Unverified Commit 65fe1767 authored by Earle F. Philhower, III's avatar Earle F. Philhower, III Committed by GitHub

Make default CPU speed 133MHz (#557)

The chip supports 133MHz and the other Pico core already defaults to
the higher speed, so make 133 the default.

It can still be changed through the menus and will stay at 125 unless
pre-existing users change it so they will see no difference.
parent cfc91804
This diff is collapsed.
......@@ -32,7 +32,7 @@ def BuildDebugLevel(name):
print("%s.menu.dbglvl.%s.build.debug_level=%s" % (name, l[0], l[1]))
def BuildFreq(name):
for f in [ 125, 50, 100, 133, 150, 175, 200, 225, 250, 275, 300]:
for f in [ 133, 50, 100, 125, 150, 175, 200, 225, 250, 275, 300]:
warn = ""
if f > 133: warn = " (Overclock)"
print("%s.menu.freq.%s=%s MHz%s" % (name, f, f, warn))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment