This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

app_timer not working without softdevice even by initialising it expilicitelly

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

Related