Hi,
On nRF52840, we are able to engage APPROTECT by setting NRF_UICR->APPROTECT to 0.
However, writing 0xFF to NRF_UICR->APPROTECT does not seem to disengage APPROTECT.
For example, after executing below code, APPROTECT still remains engaged:
NRF_UICR->APPROTECT = 0x00;
NRF_UICR->APPROTECT = 0xFF;
This behavior is different from nRF52832, where writing 0xFF to NRF_UICR->APPROTECT disengaged APPROTECT.
What is the proper way to disengage APPROTECT on nRF52840?
Thank you in advance.