Lines Matching refs:RCC_OscInitStruct
348 RCC_OscInitTypeDef RCC_OscInitStruct = { 0 }; in SystemClockConfig() local
356 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI | RCC_OSCILLATORTYPE_LSE; in SystemClockConfig()
357 RCC_OscInitStruct.HSEState = RCC_HSE_OFF; in SystemClockConfig()
358 RCC_OscInitStruct.HSIState = RCC_HSI_ON; in SystemClockConfig()
359 RCC_OscInitStruct.LSEState = RCC_LSE_ON; in SystemClockConfig()
360 RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; in SystemClockConfig()
361 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; in SystemClockConfig()
362 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; in SystemClockConfig()
363 RCC_OscInitStruct.PLL.PLLMUL = RCC_PLLMUL_6; in SystemClockConfig()
364 RCC_OscInitStruct.PLL.PLLDIV = RCC_PLLDIV_3; in SystemClockConfig()
365 if( HAL_RCC_OscConfig( &RCC_OscInitStruct ) != HAL_OK ) in SystemClockConfig()