@@ -88,11 +88,11 @@ void SystemClock_Config(void)
8888 RCC_CRSInitTypeDef RCC_CRSInitStruct;
8989#endif
9090
91- /* *Configure the main internal regulator output voltage
91+ /* *Configure the main internal regulator output voltage
9292 */
9393 __HAL_PWR_VOLTAGESCALING_CONFIG (PWR_REGULATOR_VOLTAGE_SCALE1);
9494
95- /* *Initializes the CPU, AHB and APB busses clocks
95+ /* *Initializes the CPU, AHB and APB busses clocks
9696 */
9797 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|
9898#ifdef USBCON
@@ -112,7 +112,7 @@ void SystemClock_Config(void)
112112 RCC_OscInitStruct.PLL .PLLDIV = RCC_PLLDIV_2;
113113 HAL_RCC_OscConfig (&RCC_OscInitStruct);
114114
115- /* *Initializes the CPU, AHB and APB busses clocks
115+ /* *Initializes the CPU, AHB and APB busses clocks
116116 */
117117 RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
118118 |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
@@ -139,11 +139,11 @@ void SystemClock_Config(void)
139139 LL_RCC_SetClkAfterWakeFromStop (LL_RCC_STOP_WAKEUPCLOCK_HSI);
140140
141141#ifdef USBCON
142- /* *Enable the SYSCFG APB clock
142+ /* *Enable the SYSCFG APB clock
143143 */
144144 __HAL_RCC_CRS_CLK_ENABLE ();
145145
146- /* *Configures CRS
146+ /* *Configures CRS
147147 */
148148 RCC_CRSInitStruct.Prescaler = RCC_CRS_SYNC_DIV1;
149149 RCC_CRSInitStruct.Source = RCC_CRS_SYNC_SOURCE_USB;
@@ -155,11 +155,11 @@ void SystemClock_Config(void)
155155 HAL_RCCEx_CRSConfig (&RCC_CRSInitStruct);
156156#endif
157157
158- /* *Configure the Systick interrupt time
158+ /* *Configure the Systick interrupt time
159159 */
160160 HAL_SYSTICK_Config (HAL_RCC_GetHCLKFreq ()/1000 );
161161
162- /* *Configure the Systick
162+ /* *Configure the Systick
163163 */
164164 HAL_SYSTICK_CLKSourceConfig (SYSTICK_CLKSOURCE_HCLK);
165165
0 commit comments