aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/stm32f1/include/series/rcc.h
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2012-04-05 12:07:12 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2012-04-11 16:56:56 -0400
commit5295f92b19e7ca63e5d0c0f3bb15b926e79ceea4 (patch)
tree84f32a02d5824d2e89c1686edcae4317d9337f93 /libmaple/stm32f1/include/series/rcc.h
parent28825b6a2f66b0329229185eb9cbd9004fae4b1b (diff)
downloadlibrambutan-5295f92b19e7ca63e5d0c0f3bb15b926e79ceea4.tar.gz
librambutan-5295f92b19e7ca63e5d0c0f3bb15b926e79ceea4.zip
Deprecate rcc_clk_init().
This function has been with us from the earliest days of libmaple. It's showing its age, as the API it presents is tied to the STM32F1. Deprecate it, and provide instructions for how to use newer, more portable APIs. The new way is more verbose, but we can always add a portable "just set up the PLL, dammit" convenience function later (a nice candidate is to extract an interface from setup_clocks() in boards.cpp). Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple/stm32f1/include/series/rcc.h')
-rw-r--r--libmaple/stm32f1/include/series/rcc.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libmaple/stm32f1/include/series/rcc.h b/libmaple/stm32f1/include/series/rcc.h
index b72c5cf..1eb913a 100644
--- a/libmaple/stm32f1/include/series/rcc.h
+++ b/libmaple/stm32f1/include/series/rcc.h
@@ -448,8 +448,7 @@ typedef enum rcc_clk_id {
} rcc_clk_id;
/**
- * PLL multipliers
- * @see rcc_clk_init()
+ * @brief Deprecated PLL multipliers, for rcc_clk_init().
*/
typedef enum rcc_pll_multiplier {
RCC_PLLMUL_2 = (0x0 << 18),
@@ -470,8 +469,8 @@ typedef enum rcc_pll_multiplier {
} rcc_pll_multiplier;
/**
- * PLL entry clock source
- * @see rcc_clk_init()
+ * @brief PLL clock sources.
+ * @see rcc_configure_pll()
*/
typedef enum rcc_pllsrc {
RCC_PLLSRC_HSE = (0x1 << 16),