Searched refs:RCC_OscInitStruct (Results 1 – 1 of 1) sorted by relevance
99 RCC_OscInitTypeDef RCC_OscInitStruct; in SystemClock_Config() local110 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; in SystemClock_Config()111 RCC_OscInitStruct.HSEState = RCC_HSE_ON; in SystemClock_Config()112 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; in SystemClock_Config()113 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; in SystemClock_Config()114 RCC_OscInitStruct.PLL.PLLM = 25; in SystemClock_Config()115 RCC_OscInitStruct.PLL.PLLN = 360; in SystemClock_Config()116 RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; in SystemClock_Config()117 RCC_OscInitStruct.PLL.PLLQ = 7; in SystemClock_Config()118 HAL_RCC_OscConfig(&RCC_OscInitStruct); in SystemClock_Config()