Files
ueforth/ueforth/arduino/autoboot.fs
2021-02-06 20:52:39 -08:00

11 lines
321 B
Forth

internals definitions
( Change default block source on arduino )
: arduino-default-use s" /spiffs/blocks.fb" open-blocks ;
' arduino-default-use is default-use
( Check for autoexec.fs and run if present )
: autoexec ( a n -- ) s" /spiffs/autoexec.fs" ['] included catch 2drop drop ;
' autoexec
forth definitions
execute