Hi
I want to use P0.18 gpio as output pin and not as reset for nordic.
I am using ncs v2.0.0.
I have added

and when I grnd that pin, the system resets. Doesnt this mean, P0.18 is still a reset pin?
Hi
I want to use P0.18 gpio as output pin and not as reset for nordic.
I am using ncs v2.0.0.
I have added
Update on above.
After I program the hex using visual studio flash, if I give nrfjprog --eraseuicr the reset pin works.
But what confuses me is, why did below registers say no pin set as reset and still needed eraseuicr to make reset pin as gpio work?
nrfjprog --memrd 0x10001014 --n 4
nrfjprog --memrd 0x10001018 --n 4
Hi,
Good to se you resolved it with an UICR reset. However, there are a few points worth. mentioning. On nRF52840, the regsiter addresses for enabling pin reset is 0x10001200 and 0x10001204, so those are the addresses you need to check (see UICR).
Also, to properly solve this, we should understand why pin reset is enabled in the first place. There are two typical reasons:
Thanks this helped