- Jul 31, 2017
-
-
Alexander Steffen authored
There were several different spellings of MicroPython present in comments, when there should be only one.
-
- May 02, 2017
-
-
Paul Sokolovsky authored
The with semantics of this function is close to pkg_resources.resource_stream() function from setuptools, which is the canonical way to access non-source files belonging to a package (resources), regardless of what medium the package uses (e.g. individual source files vs zip archive). In the case of MicroPython, this function allows to access resources which are frozen into the executable, besides accessing resources in the file system. This is initial stage of the implementation, which actually doesn't implement "package" part of the semantics, just accesses frozen resources from "root", or filesystem resource - from current dir.
-
- May 23, 2016
-
-
Damien George authored
Freezing mpy files using mpy-tool.py now works again.
-
- May 21, 2016
-
-
Paul Sokolovsky authored
Now frozen modules is treated just as a kind of VFS, and all operations performed on it correspond to operations on normal filesystem. This allows to support packages properly, and potentially also data files. This change also have changes to rework frozen bytecode modules support to use the same framework, but it's not finished (and actually may not work, as older adhox handling of any type of frozen modules is removed).
-
- Apr 17, 2016
-
-
Damien George authored
This allows for better error messages, since the name of the file (sans .py) can now be printed when an exception occurs within a frozen script.
-
- Apr 13, 2016
-
-
Damien George authored
The config variable MICROPY_MODULE_FROZEN is now made of two separate parts: MICROPY_MODULE_FROZEN_STR and MICROPY_MODULE_FROZEN_MPY. This allows to have none, either or both of frozen strings and frozen mpy files (aka frozen bytecode).
-
- Mar 16, 2016
-
-
Paul Sokolovsky authored
-
- Jan 03, 2016
-
-
Paul Sokolovsky authored
-
- Jan 01, 2016
-
-
Paul Sokolovsky authored
To allow simple zero-terminated lexers.
-
- May 31, 2015
-
-
Paul Sokolovsky authored
-
- Jan 20, 2015
-
-
Paul Sokolovsky authored
Only modules (not packages) supported now. Source modules can be converted to frozen module structures using tools/make-frozen.py script.
-
- Jan 01, 2015
-
-
Damien George authored
-
- Jun 28, 2014
-
-
Paul Sokolovsky authored
It defines types used by all other headers. Fixes #691.
-
- May 03, 2014
-
-
Damien George authored
Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/.
-
- Mar 20, 2014
-
-
Damien George authored
-
- Mar 13, 2014
-
-
Dave Hylands authored
-
- Feb 17, 2014
-
-
Damien George authored
To follow up pull request #309.
-