This anomaly applies to Revision 1, build codes QKAA-D00.
Application, Network
After pin reset, RESETREAS bits other than RESETPIN might also be set.
A pin reset has triggered.
If the firmware evaluates RESETREAS, it might take the wrong action.
For Application:
if (NRF_RESET_S->RESETREAS & RESET_RESETREAS_RESETPIN_Msk)
{
NRF_RESET_S->RESETREAS = ~RESET_RESETREAS_RESETPIN_Msk;
}
For Network:
if (NRF_RESET->RESETREAS & RESET_RESETREAS_RESETPIN_Msk)
{
NRF_RESET->RESETREAS = ~RESET_RESETREAS_RESETPIN_Msk;
}
This workaround is implemented in MDK version 8.29.0 and later.