|
@@ -8,9 +8,12 @@ The "boot.py" will be started before "main.py" and is used to setup the Pico.
|
|
|
|
|
|
############################## Modules ##############################
|
|
|
|
|
|
-from machine import freq
|
|
|
+import gc
|
|
|
from sys import path
|
|
|
+from machine import freq
|
|
|
|
|
|
############################## Code ##############################
|
|
|
|
|
|
-path.append("/Libs") # add path for libraries
|
|
|
+freq(125000000) # set clock speed of pico
|
|
|
+gc.enable() # enable automatic garbage collector
|
|
|
+path.append("/libs") # add path for libraries
|