Lines Matching refs:RCC_OscInitStruct
215 RCC_OscInitTypeDef RCC_OscInitStruct; in SystemClockConfig() local
223 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_LSE; in SystemClockConfig()
224 RCC_OscInitStruct.HSEState = RCC_HSE_OFF; in SystemClockConfig()
225 RCC_OscInitStruct.HSIState = RCC_HSI_ON; in SystemClockConfig()
226 RCC_OscInitStruct.LSEState = RCC_LSE_ON; in SystemClockConfig()
227 RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; in SystemClockConfig()
228 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; in SystemClockConfig()
229 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; in SystemClockConfig()
230 RCC_OscInitStruct.PLL.PLLMUL = RCC_PLLMUL_6; in SystemClockConfig()
231 RCC_OscInitStruct.PLL.PLLDIV = RCC_PLLDIV_3; in SystemClockConfig()
232 if( HAL_RCC_OscConfig( &RCC_OscInitStruct ) != HAL_OK ) in SystemClockConfig()