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

51822 2.4g+ble timer

2.4g ble work in 2 mode(not same time) when reset. when I init 2.4g clock void esb_clocks_start( void ) { NRF_CLOCK->EVENTS_HFCLKSTARTED = 0; NRF_CLOCK->TASKS_HFCLKSTART = 1;

while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0);

}

the ble timer not work: err_code = app_timer_create(&m_keyscan_timer_id, APP_TIMER_MODE_REPEATED, timer_10ms_timeout_handler); ...... err_code = app_timer_start(m_keyscan_timer_id, SCANKEY_LEVEL_MEAS_INTERVAL, NULL);

Related