Searched refs:post_div2 (Results 1 – 4 of 4) sorted by relevance
| /external/platform/pico/rp2_common/hardware_pll/ |
| A D | pll.c | 13 void pll_init(PLL pll, uint refdiv, uint vco_freq, uint post_div1, uint post_div2) { in pll_init() argument 28 assert((post_div1 >= 1 && post_div1 <= 7) && (post_div2 >= 1 && post_div2 <= 7)); in pll_init() 39 (post_div2 << PLL_PRIM_POSTDIV2_LSB); in pll_init()
|
| /external/platform/pico/rp2_common/pico_stdlib/ |
| A D | stdlib.c | 48 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2) { in set_sys_clock_pll() argument 56 pll_init(pll_sys, PLL_COMMON_REFDIV, vco_freq, post_div1, post_div2); in set_sys_clock_pll() 57 uint32_t freq = vco_freq / (post_div1 * post_div2); in set_sys_clock_pll()
|
| /external/platform/pico/rp2_common/hardware_pll/include/hardware/ |
| A D | pll.h | 58 void pll_init(PLL pll, uint ref_div, uint vco_freq, uint post_div1, uint post_div2);
|
| /external/platform/pico/common/pico_stdlib/include/pico/ |
| A D | stdlib.h | 102 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2);
|
Completed in 6 milliseconds