/**
* @brief Configures the main PLL clock source, multiplication and division factors.
@簡介 配置主PLL時鐘源,以及分頻因子 (PLL不止一個,還有一個用來為音頻處理提供高質(zhì)量時鐘)
* @note This function must be used only when the main PLL is disabled.
* @注意 這個函數(shù)只能在主PLL失能時才能使用
* @param RCC_PLLSource: specifies the PLL entry clock source.
@參數(shù) RCC_PLLSource:選擇PLL時鐘源
* This parameter can be one of the following values:
這個參數(shù)可以是如下值:
* @arg RCC_PLLSource_HSI: HSI oscillator clock selected as PLL clock entry
選擇HSI作為PLL時鐘源
* @arg RCC_PLLSource_HSE: HSE oscillator clock selected as PLL clock entry
選擇HSE作為PLL時鐘源
* @note This clock source (RCC_PLLSource) is common for the main PLL and PLLI2S.
*
* @param PLLM: specifies the division factor for PLL VCO input clock
@參數(shù) PLLM:設置 PLL VCO 輸入時鐘的 除法因子(division factor)
* This parameter must be a number between 0 and 63.
這個參數(shù) 范圍是 0 ~ 63
* @note You have to set the PLLM parameter correctly to ensure that the VCO input
* frequency ranges from 1 to 2 MHz. It is recommended to select a frequency
* of 2 MHz to limit PLL jitter.
* @注意 你需要正確選擇 PLLM的值, 使得 VCO輸入頻率 介于 1~2MHz.
建議選擇 2MHz 來限制PLL震蕩(jitter?)
* @param PLLN: specifies the multiplication factor for PLL VCO output clock
* This parameter must be a number between 192 and 432.
@參數(shù) PLLN 選擇 PLL VCO輸出時鐘的 乘法因子(multiplication factor )
這個參數(shù)的值 介于 192 ~432
* @note You have to set the PLLN parameter correctly to ensure that the VCO
* output frequency is between 192 and 432 MHz.
* @注意 你學要正確選PLLN的大小,以保證VCO輸出時鐘介于 192 ~432MHz
* @param PLLP: specifies the division factor for main system clock (SYSCLK)
* This parameter must be a number in the range {2, 4, 6, or 8}.
@參數(shù) PLLP 選擇 系統(tǒng)時鐘SYSCLK 的除法因子(division factor ),這個
值可以是2,4,6,8
* @note You have to set the PLLP parameter correctly to not exceed 168 MHz on
* the System clock frequency.
* @注意 你需要正確設置PLLP,確保系統(tǒng)時鐘SYSCLK不超過168MHz
* @param PLLQ: specifies the division factor for OTG FS, SDIO and RNG clocks
* This parameter must be a number between 4 and 15.
@參數(shù) PLLQ 選擇給 OTG FS(USB), SDIO(SD卡讀寫), RNG(隨機數(shù)發(fā)生器)
時鐘的除法因子,其值介于4~15
* @note If the USB OTG FS is used in your application, you have to set the
* PLLQ parameter correctly to have 48 MHz clock for the USB. However,
* the SDIO and RNG need a frequency lower than or equal to 48 MHz to work
* correctly.
* @注意 如果在你的程序中用到 USB OTG FS,你需要正確設置PLLQ,確保USB有
48MHz的時鐘。但是對于SDIO,RNG需要一個小于或等于48MHz的時鐘
* @retval None