mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-18 05:45:31 +03:00
define PLL setting for overclock
This commit is contained in:
parent
0a7a74965a
commit
f47b438918
3 changed files with 10 additions and 5 deletions
|
@ -505,9 +505,9 @@ void SystemInit(void)
|
|||
void SystemInitOC(void)
|
||||
{
|
||||
/* PLL setting for overclocking */
|
||||
pll_n = 480;
|
||||
pll_p = 2;
|
||||
pll_q = 10;
|
||||
pll_n = PLL_N_OC;
|
||||
pll_p = PLL_P_OC;
|
||||
pll_q = PLL_Q_OC;
|
||||
|
||||
SystemInit();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue