Lines Matching refs:RCC_OscInitStruct
163 RCC_OscInitTypeDef RCC_OscInitStruct; in SystemClock_Config() local
175 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI48|RCC_OSCILLATORTYPE_HSI in SystemClock_Config()
177 RCC_OscInitStruct.LSEState = RCC_LSE_ON; in SystemClock_Config()
178 RCC_OscInitStruct.HSIState = RCC_HSI_ON; in SystemClock_Config()
179 RCC_OscInitStruct.HSI48State = RCC_HSI48_ON; in SystemClock_Config()
180 RCC_OscInitStruct.HSICalibrationValue = 64; in SystemClock_Config()
181 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; in SystemClock_Config()
182 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; in SystemClock_Config()
183 …RCC_OscInitStruct.PLL.PLLM = 1; // <-- This one gets dropped by V1.11.0 add me manually back in w… in SystemClock_Config()
184 RCC_OscInitStruct.PLL.PLLN = 10; in SystemClock_Config()
185 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; in SystemClock_Config()
186 RCC_OscInitStruct.PLL.PLLQ = RCC_PLLQ_DIV2; in SystemClock_Config()
187 RCC_OscInitStruct.PLL.PLLR = RCC_PLLR_DIV2; in SystemClock_Config()
188 if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) in SystemClock_Config()