How should we comprehend the nature of PPI, when dealing with radio interrupts?
For example, if I point radio event handler call back ( of this type:
static nrf_radio_signal_callback_return_param_t*)
to a radio interrupt event handler function of my own, let's call it radio_event_handler, I can do switch-case on these 4:
NRF_RADIO->EVENTS_END
NRF_RADIO->BCMATCH
NRF_RADIO->READY
NRF_RADIO->ADDRESS
in order to tackle different scenarios.
I'm however curious as is there a connection between generating a radio event/interrupt (on NVIC if I'm not mistaken) and producing a PPI event like NRF_RADIO->EVENTS_END? Are they, for example, synchronized? Completely unrelated (Which is very unlikely)?