diff options
author | Damien George <damien.p.george@gmail.com> | 2016-10-18 10:17:54 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-10-18 10:17:54 +1100 |
commit | 5c93d0b91655dcd32e633d720b5b790b10be989c (patch) | |
tree | a7f9e62bde6e596c628efd31b8386e7529f320ed | |
parent | 628799cd365e174a53a9328ebe3045f53efdf7d6 (diff) | |
download | micropython-5c93d0b91655dcd32e633d720b5b790b10be989c.tar.gz micropython-5c93d0b91655dcd32e633d720b5b790b10be989c.zip |
cc3200: Enable loading of precompiled .mpy files.
Adds 1072 bytes to the code size.
-rw-r--r-- | cc3200/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cc3200/mpconfigport.h b/cc3200/mpconfigport.h index 0b16d730d0..bf3e691bd8 100644 --- a/cc3200/mpconfigport.h +++ b/cc3200/mpconfigport.h @@ -38,6 +38,7 @@ // options to control how Micro Python is built #define MICROPY_ALLOC_PATH_MAX (128) +#define MICROPY_PERSISTENT_CODE_LOAD (1) #define MICROPY_EMIT_THUMB (0) #define MICROPY_EMIT_INLINE_THUMB (0) #define MICROPY_COMP_MODULE_CONST (1) |