Home
last modified time | relevance | path

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

/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/src/driver/r_gpt/
H A Dr_gpt.c759 uint32_t pclk_freq_hz = 0; in gpt_period_to_pclk() local
760 g_cgc_on_cgc.systemClockFreqGet(CGC_SYSTEM_CLOCKS_PCLKD, &pclk_freq_hz); in gpt_period_to_pclk()
769 temp_period = (pclk_freq_hz * 1ULL) / (1000 * period); in gpt_period_to_pclk()
772 temp_period = (pclk_freq_hz * 1ULL) / period; in gpt_period_to_pclk()
775 temp_period = (period * (pclk_freq_hz * 1ULL)) / 1000000000; in gpt_period_to_pclk()
778 temp_period = (period * (pclk_freq_hz * 1ULL)) / 1000000; in gpt_period_to_pclk()
781 temp_period = (period * (pclk_freq_hz * 1ULL)) / 1000; in gpt_period_to_pclk()
784 temp_period = period * (pclk_freq_hz * 1ULL); in gpt_period_to_pclk()
846 uint32_t pclk_freq_hz = 0; in gpt_clock_frequency_get() local
849 g_cgc_on_cgc.systemClockFreqGet(CGC_SYSTEM_CLOCKS_PCLKD, &pclk_freq_hz); in gpt_clock_frequency_get()
[all …]
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/src/r_gpt/
H A Dr_gpt.c1619 uint32_t pclk_freq_hz = R_FSP_SystemClockHzGet(FSP_PRIV_CLOCK_PCLKD); in gpt_clock_frequency_get() local
1621 return pclk_freq_hz >> pclk_divisor; in gpt_clock_frequency_get()