SDK: 15.3, Device: nRF52840, IDE: SES v4.16
I am writing a radio test application that uses a service / characteristics to determine radio channel, power, etc. The idea was that the application would shut-down the soft-device once test execution had been engaged. Then, run the radio test. What I've discovered is that once nrf_sdh_disable_request() has been called, ALL interrupts seem to be disabled. This makes sense in a way: the soft-device is handling interrupts to that point, so once it's disabled, the safest thing is to disable all the interrupts.
My question is this: how do I re-enable interrupts after a call to nrf_sdh_disable_request()?
Thanks,
-J