Using S130 to request notifications of radio activity as:
err = sd_radio_notification_cfg_set(NRF_RADIO_NOTIFICATION_TYPE_INT_ON_BOTH,
NRF_RADIO_NOTIFICATION_DISTANCE_NONE);
fails with NRF_ERROR_INVALID_PARAM.
Is there a reason this combination is disallowed? The use case for it is tracking the amount of time spent in various operational modes, of which "radio on" is a significant attribute. I don't need any preparation time, I just need to know when the radio turns on and off. It "works" with NRF_RADIO_NOTIFICATION_DISTANCE_800US but presumably that overestimates the actual on time by 800 us on each activation.
Or is there another way to collect that information? (I should note I'm not using the nRF5 SDK, though if it has that ability I may be able to use the same technique.)
FWIW, I expect to have the same need in S132 and other nRF52 once I get to those devices.