Home
last modified time | relevance | path

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

/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_pll/
Dpll.c13 void pll_init(PLL pll, uint refdiv, uint vco_freq, uint post_div1, uint post_div2) { in pll_init() argument
17 …assert(vco_freq >= (PICO_PLL_VCO_MIN_FREQ_MHZ * PICO_MHZ) && vco_freq <= (PICO_PLL_VCO_MAX_FREQ_MH… in pll_init()
21 uint32_t fbdiv = vco_freq / (ref_mhz * PICO_MHZ); in pll_init()
35 assert(ref_mhz <= (vco_freq / 16)); in pll_init()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_stdlib/
Dstdlib.c39 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2) { in set_sys_clock_pll() argument
47 pll_init(pll_sys, 1, vco_freq, post_div1, post_div2); in set_sys_clock_pll()
48 uint32_t freq = vco_freq / (post_div1 * post_div2); in set_sys_clock_pll()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/pico_stdlib/
Dstdlib.c24 void set_sys_clock_pll(__unused uint32_t vco_freq, __unused uint post_div1, __unused uint post_div2… in set_sys_clock_pll() argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_pll/include/hardware/
Dpll.h50 void pll_init(PLL pll, uint ref_div, uint vco_freq, uint post_div1, uint post_div2);
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/common/pico_stdlib/include/pico/
Dstdlib.h102 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2);