diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2012-05-11 16:43:46 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-05-31 17:24:17 -0400 |
commit | 18c4bc628070518902261e5fb9d1abfc68c4c073 (patch) | |
tree | 7131da598db0902d6bccd157b59a585307c8cf76 /libmaple | |
parent | 2c685cef97ed6eeabf793abc55d1d18e194d8e80 (diff) | |
download | librambutan-18c4bc628070518902261e5fb9d1abfc68c4c073.tar.gz librambutan-18c4bc628070518902261e5fb9d1abfc68c4c073.zip |
stm32f1/rcc.c: Move Doyxgen.
This is a workaround for Breathe.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/stm32f1/rcc.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libmaple/stm32f1/rcc.c b/libmaple/stm32f1/rcc.c index a83bea3..8d71a41 100644 --- a/libmaple/stm32f1/rcc.c +++ b/libmaple/stm32f1/rcc.c @@ -95,16 +95,7 @@ const struct rcc_dev_info rcc_dev_table[] = { #endif }; -/** - * @brief Deprecated; STM32F1 only. - * - * Initialize the clock control system. Initializes the system - * clock source to use the PLL driven by an external oscillator. - * - * @param sysclk_src system clock source, must be PLL - * @param pll_src pll clock source, must be HSE - * @param pll_mul pll multiplier - */ +__deprecated void rcc_clk_init(rcc_sysclk_src sysclk_src, rcc_pllsrc pll_src, rcc_pll_multiplier pll_mul) { |