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

NRF_CLOCK->EVENTS_LFCLKSTARTED loops forever

Hi I have problem with LFCLK timer. In os_tick_init() in RTX_Conf_CM.c there is a loop and it won't end.

while (NRF_CLOCK->EVENTS_LFCLKSTARTED == 0)
 {
 Do nothing.
 }

I tried _DSB() solution but it still won't work. If I comment this loop the program works fine, but I don't want some unpredictable things in the future. What can I do?

Related