I'm trying to use app_timer without softdevice, I tried to initialise it explicitally but still not working
static void lfclk_config(void)
{
uint32_t err_code = nrf_drv_clock_init(NULL);
APP_ERROR_CHECK(err_code);
nrf_drv_clock_lfclk_request();
}
when I use app_timer without scheduler, should I erase softdevice region?? I called this from main, please see the attachmentmain.c