Dateien nach "pg26" hochladen

work in progress implementation of new framework
This commit is contained in:
2025-10-30 00:20:18 +00:00
parent 87cfa83af9
commit bd19860ae7
5 changed files with 374 additions and 0 deletions

12
pg26/boot.py Normal file
View File

@@ -0,0 +1,12 @@
# This file is executed on every boot (including wake-boot from deepsleep)
#import esp
#esp.osdebug(None)
#import webrepl
#webrepl.start()
import uos, machine
#uos.dupterm(None, 1) # disable REPL on UART(0)
machine.freq(240000000) #max freq
import gc
#import webrepl
#webrepl.start()
gc.collect()