Hi all,
Radio notification inactive state interrupt is coming but I was not able to do any action by comparing it.
I am thinking, if radio_evt is false then it is radio inactive state. Is my assumption correct?
void SWI1_IRQHandler(bool radio_evt)
{
if (radio_evt == false)
{
nrf_gpio_pin_toggle(BSP_LED_1);
// Inactive signal
radio_used = 1;
}
}
Please help me how to get and handle RADIO inactive interrupts
Thanks
Sridhar