nRF52833 GPIO P1.00 mapping to pin number

P0.25 is accessible by below:

nrf_gpio_pin_set(25);


However, when I try to access P1.00:

Neither this:

nrf_gpio_pin_set(1);


Nor this works:

nrf_gpio_pin_set(32);

How to find the mapping between GPIO numbers and pin names?

thanks,
Neo
Parents Reply Children
Related