Home
last modified time | relevance | path

Searched refs:cntr_l (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/
Dcntr.c131 uint32_t cntr_l, cntr_h, cntr_h_overflow; in cntr_cnt_get() local
140 cntr_l = nrf_grtc_sys_counter_low_get(NRF_GRTC); in cntr_cnt_get()
145 return cntr_l; in cntr_cnt_get()
154 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in cntr_cmp_set() local
164 cntr_l = nrf_grtc_sys_counter_low_get(NRF_GRTC); in cntr_cmp_set()
173 stale = cntr_l - 1U; in cntr_cmp_set()
181 cntr_l = NRF_GRTC->CC[cmp].CCL; in cntr_cmp_set()
182 } while (cntr_l == stale); in cntr_cmp_set()
190 if (value < cntr_l) { in cntr_cmp_set()
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio.c1418 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in radio_tmr_start() local
1431 cntr_l = nrf_grtc_sys_counter_low_get(NRF_GRTC); in radio_tmr_start()
1437 stale = cntr_l - 1U; in radio_tmr_start()
1446 cntr_l = NRF_GRTC->CC[HAL_CNTR_GRTC_CC_IDX_RADIO].CCL; in radio_tmr_start()
1447 } while (cntr_l == stale); in radio_tmr_start()
1455 if (ticks_start < cntr_l) { in radio_tmr_start()
1542 uint32_t cntr_l, cntr_h, cntr_h_overflow, stale; in radio_tmr_start_tick() local
1555 cntr_l = nrf_grtc_sys_counter_low_get(NRF_GRTC); in radio_tmr_start_tick()
1561 stale = cntr_l - 1U; in radio_tmr_start_tick()
1570 cntr_l = NRF_GRTC->CC[HAL_CNTR_GRTC_CC_IDX_RADIO].CCL; in radio_tmr_start_tick()
[all …]