Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Correct PLL Freq from 25 to 8 to fix USB
  • Loading branch information
BennehBoy committed Jan 5, 2019
commit 5b25ac2bc4c2953e3a2ee377fd3b892d348a89b4
2 changes: 1 addition & 1 deletion variants/DIYMROE_F407VGT/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ WEAK void SystemClock_Config(void)
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLM = 25;
RCC_OscInitStruct.PLL.PLLM = 8;
RCC_OscInitStruct.PLL.PLLN = 336;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
Expand Down