stm32l0: rcc: doc: fix rcc_clock_setup_pll brief.

rcc_clock_setup_pll allows to use HSE or HSI as PLL source, comment is misleading.
This commit is contained in:
Guillaume Revaillot 2018-10-08 18:03:19 +02:00 committed by Karl Palsson
parent b287bbd322
commit f38c6f4f91
1 changed files with 4 additions and 3 deletions

View File

@ -496,9 +496,10 @@ void rcc_set_peripheral_clk_sel(uint32_t periph, uint32_t sel)
RCC_CCIPR = reg32 | (sel << shift);
}
/**
* Set up sysclock with PLL from HSI16
* @param clock full struct with desired parameters
/** @brief RCC Setup PLL and use it as Sysclk source.
*
* @param[in] clock full struct with desired parameters
*
*/
void rcc_clock_setup_pll(const struct rcc_clock_scale *clock)
{