Home
last modified time | relevance | path

Searched refs:CYCLES_PER_SEC (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/drivers/timer/
Dwch_systick_ch32v00x.c25 #define CYCLES_PER_SEC sys_clock_hw_cycles_per_sec() macro
26 #define CYCLES_PER_TICK (CYCLES_PER_SEC / CONFIG_SYS_CLOCK_TICKS_PER_SEC)
Dxlnx_psttc_timer.c25 #define CYCLES_PER_SEC TIMER_CLOCK_FREQUECY macro
26 #define CYCLES_PER_TICK (CYCLES_PER_SEC / TICKS_PER_SEC)
44 BUILD_ASSERT(CYCLES_PER_SEC >= TICKS_PER_SEC,
48 BUILD_ASSERT((CYCLES_PER_SEC % TICKS_PER_SEC) == 0,
Drv32m1_lptmr_timer.c26 #define CYCLES_PER_SEC sys_clock_hw_cycles_per_sec() macro
27 #define CYCLES_PER_TICK (CYCLES_PER_SEC / CONFIG_SYS_CLOCK_TICKS_PER_SEC)
Drcar_cmt_timer.c23 #define CYCLES_PER_SEC TIMER_CLOCK_FREQUENCY macro
24 #define CYCLES_PER_TICK (CYCLES_PER_SEC / CONFIG_SYS_CLOCK_TICKS_PER_SEC)
/Zephyr-latest/soc/nordic/
Dtiming.c15 #define CYCLES_PER_SEC (16000000 / (1 << NRF_TIMER2->PRESCALER)) macro
42 return NRF_TIMER2->CC[0] * ((SystemCoreClock) / CYCLES_PER_SEC); in soc_timing_counter_get()