This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Setting pins "1" or "0" on different ports

Hello,

I have a question about using pins as output. I'm trying to set 2 pins to "1", but cant fully understand how to use pins on port1.

for example:  P0.10 (wich works fine)

int pin = 10;

NRF_GPIO->DIR = (1 << pin); //pin as OUTPUT

NRF_GPIO->OUT = (1 << pin); //pin is set to "1"

but how can I set pin P1.08 to "1", since It's on port1, code above doesn't work.

Wasky

Parents Reply Children
No Data
Related