Skip to content

Commit 24f2ce6

Browse files
authored
Merge pull request #5124 from tfx2001/master
2 parents 4f7d424 + 7fe03a7 commit 24f2ce6

File tree

1 file changed

+2
-1
lines changed
  • bsp/stm32/stm32h750-artpi-h750/board

1 file changed

+2
-1
lines changed

bsp/stm32/stm32h750-artpi-h750/board/board.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ void SystemClock_Config(void)
3232
/** Initializes the RCC Oscillators according to the specified parameters
3333
* in the RCC_OscInitTypeDef structure.
3434
*/
35-
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
35+
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI48 | RCC_OSCILLATORTYPE_HSE;
3636
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
37+
RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;
3738
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
3839
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
3940
RCC_OscInitStruct.PLL.PLLM = 5;

0 commit comments

Comments
 (0)