Hello,
In the radio_test example of the SDK16, there is this function:
static void radio_disable(void)
{
NRF_RADIO->SHORTS = 0;
NRF_RADIO->EVENTS_DISABLED = 0;
#ifdef NRF51
NRF_RADIO->TEST = 0;
#endif
NRF_RADIO->TASKS_DISABLE = 1;
while (NRF_RADIO->EVENTS_DISABLED == 0)
{
// Do nothing.
}
NRF_RADIO->EVENTS_DISABLED = 0;
}
Can someone help me identify what is the current state of the radio after calling this function? Is the radio in a low-power state? If yes, what components are retained and what are left on?
I'm using an NRF52840 DK.
Thanks and regards,
Jeff