Hello,
I have a problem with app_timer.
My program need to use BLE UART for about 15 second then switch for just RADIO after.
To do so, I enable the ble stack as the ble_app_uart example in the ble_peripheral folder, and set an app_timer as a single shot with a timeout of 15 second.
On timeout, I disable the soft device with nrf_sdh_disable_request() and i start my radio communication as in the radioexample int the peripheral folder.
On the side, I have a timer for blinking a led, but when I disable soft device, this timer stop.
How to deactivate the ble stack or softdevice to use radio and continue using app_timers?