7 #ifndef _HARDWARE_PLL_H 8 #define _HARDWARE_PLL_H 11 #include "hardware/structs/pll.h" 31 #define pll_sys pll_sys_hw 32 #define pll_usb pll_usb_hw 34 #ifndef PICO_PLL_VCO_MIN_FREQ_MHZ 35 #define PICO_PLL_VCO_MIN_FREQ_MHZ 750 38 #ifndef PICO_PLL_VCO_MAX_FREQ_MHZ 39 #define PICO_PLL_VCO_MAX_FREQ_MHZ 1600 50 void pll_init(PLL pll, uint ref_div, uint vco_freq, uint post_div1, uint post_div2);
void pll_init(PLL pll, uint ref_div, uint vco_freq, uint post_div1, uint post_div2)
Initialise specified PLL.
Definition: pll.c:13
void pll_deinit(PLL pll)
Release/uninitialise specified PLL.This will turn off the power to the specified PLL. Note this function does not currently check if the PLL is in use before powering it off so should be used with care.
Definition: pll.c:75