We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f7d424 + 7fe03a7 commit 24f2ce6Copy full SHA for 24f2ce6
bsp/stm32/stm32h750-artpi-h750/board/board.c
@@ -32,8 +32,9 @@ void SystemClock_Config(void)
32
/** Initializes the RCC Oscillators according to the specified parameters
33
* in the RCC_OscInitTypeDef structure.
34
*/
35
- RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
+ RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI48 | RCC_OSCILLATORTYPE_HSE;
36
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
37
+ RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;
38
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
39
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
40
RCC_OscInitStruct.PLL.PLLM = 5;
0 commit comments