Skip to content

Commit

Permalink
Merge pull request #492 from Foundation-Devices/jeandudey/sft-3534-fi…
Browse files Browse the repository at this point in the history
…x-pllrge-value

SFT-3534: Fix PLLRGE value
  • Loading branch information
jeandudey authored Apr 16, 2024
2 parents 96dd2a8 + c67f1d8 commit d653f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/stm32/boards/Passport/frequency.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void frequency_turbo_toggle(bool enable) {
RCC_OscInitStruct.HSI48State = RCC_HSI48_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1VCIRANGE_1;
RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1VCIRANGE_3;
RCC_OscInitStruct.PLL.PLLVCOSEL = RCC_PLL1VCOWIDE;
RCC_OscInitStruct.PLL.PLLFRACN = 0;

Expand Down

0 comments on commit d653f06

Please sign in to comment.