Browse Source
Merge pull request #391 from Defragster/patch-8
Speed 24 MHz - not 24 Hz for Lowest voltage
teensy4-core
Paul Stoffregen
5 years ago
No account linked to committer's email address
1 changed files with
1 additions and
1 deletions
-
teensy4/clockspeed.c
|
|
|
|
|
|
|
|
if (voltage > OVERCLOCK_MAX_VOLT) voltage = OVERCLOCK_MAX_VOLT; |
|
|
if (voltage > OVERCLOCK_MAX_VOLT) voltage = OVERCLOCK_MAX_VOLT; |
|
|
} |
|
|
} |
|
|
#endif |
|
|
#endif |
|
|
} else if (frequency <= 24) { |
|
|
|
|
|
|
|
|
} else if (frequency <= 24000000) { |
|
|
voltage = 950; // 0.95 |
|
|
voltage = 950; // 0.95 |
|
|
} |
|
|
} |
|
|
|
|
|
|