diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-01-08 01:00:22 -0800 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-01-11 16:16:20 -0800 |
commit | d80ee8bbfd52fd44f623aabbef4544f9572aca9e (patch) | |
tree | 6af7aed612e1e335b47f5e36c5c792c9bb537dda /teensy/memzip_files/boot.py | |
parent | c698d266d1f13fe82a5ac291f7c6642da3dc0bdc (diff) | |
download | micropython-d80ee8bbfd52fd44f623aabbef4544f9572aca9e.tar.gz micropython-d80ee8bbfd52fd44f623aabbef4544f9572aca9e.zip |
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
Diffstat (limited to 'teensy/memzip_files/boot.py')
-rw-r--r-- | teensy/memzip_files/boot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/teensy/memzip_files/boot.py b/teensy/memzip_files/boot.py new file mode 100644 index 0000000000..3fe9f05e53 --- /dev/null +++ b/teensy/memzip_files/boot.py @@ -0,0 +1 @@ +print("Executing boot.py") |