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
parent
commit
e4b4a054c6
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      teensy4/clockspeed.c

+ 1
- 1
teensy4/clockspeed.c View File

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
} }



Loading…
Cancel
Save