1
0
Fork 0
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:
Faduf 2017-07-05 16:43:10 +02:00
parent 0a7a74965a
commit f47b438918
3 changed files with 10 additions and 5 deletions

View file

@ -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();
}