-
- Downloads
Added memzip filesystem support for teensy
You can now append a zipfile (containining uncomressed python sources) to the micropython.hex file. Use MEMZIP_DIR=directory when you call make, or set that in your environment to include a different tree of source files. Added sample /boot.py, /src/main.py, /test.py and /src/test.py files. Added run command so that you can execute scripts from REPL (until import is implemented). Added build directory to .gitignore
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- stm/printf.c 2 additions, 0 deletionsstm/printf.c
- teensy/Makefile 13 additions, 4 deletionsteensy/Makefile
- teensy/add-memzip.sh 27 additions, 0 deletionsteensy/add-memzip.sh
- teensy/lexermemzip.c 18 additions, 0 deletionsteensy/lexermemzip.c
- teensy/lexermemzip.h 2 additions, 0 deletionsteensy/lexermemzip.h
- teensy/main.c 90 additions, 43 deletionsteensy/main.c
- teensy/memzip.c 37 additions, 0 deletionsteensy/memzip.c
- teensy/memzip.h 73 additions, 0 deletionsteensy/memzip.h
- teensy/memzip_files/boot.py 1 addition, 0 deletionsteensy/memzip_files/boot.py
- teensy/memzip_files/src/main.py 11 additions, 0 deletionsteensy/memzip_files/src/main.py
- teensy/memzip_files/src/test.py 1 addition, 0 deletionsteensy/memzip_files/src/test.py
- teensy/memzip_files/test.py 1 addition, 0 deletionsteensy/memzip_files/test.py
- teensy/mk20dx256.ld 6 additions, 0 deletionsteensy/mk20dx256.ld
teensy/add-memzip.sh
0 → 100755
teensy/lexermemzip.c
0 → 100644
teensy/lexermemzip.h
0 → 100644
teensy/memzip.c
0 → 100644
teensy/memzip.h
0 → 100644
teensy/memzip_files/boot.py
0 → 100644
teensy/memzip_files/src/main.py
0 → 100644
teensy/memzip_files/src/test.py
0 → 100644
teensy/memzip_files/test.py
0 → 100644
Please register or sign in to comment