Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Randolf <br1@einfach.org>2017-12-28 16:32:29 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-03 01:18:05 +0300
commitfe722d46436afe502ddf1cc023a24b348e809293 (patch)
treec541fd30897b74a184e3d42fb0df01f9f15bc74c /include
parenta1ffdc59f0c75d29db00d12f827f7d9fd7e1df18 (diff)
stm32:l4: rcc: Add helper functions
Add functions for PLL output and 48MHz clock source selection
Diffstat (limited to 'include')
-rw-r--r--include/libopencm3/stm32/l4/rcc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libopencm3/stm32/l4/rcc.h b/include/libopencm3/stm32/l4/rcc.h
index f49ea7e2..01c34e26 100644
--- a/include/libopencm3/stm32/l4/rcc.h
+++ b/include/libopencm3/stm32/l4/rcc.h
@@ -962,6 +962,8 @@ void rcc_set_main_pll(uint32_t source, uint32_t pllm, uint32_t plln, uint32_t pl
uint32_t rcc_system_clock_source(void);
void rcc_set_msi_range(uint32_t msi_range);
void rcc_set_msi_range_standby(uint32_t msi_range);
+void rcc_pll_output_enable(uint32_t pllout);
+void rcc_set_clock48_source(uint32_t clksel);
END_DECLS