diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-03-28 01:14:45 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-03 00:27:14 +0300 |
commit | dbc0191d5f1cf51bdf628800ae24a70392be673f (patch) | |
tree | 41d8693fd5f7ab3fc16229e3c329f05c40d996cf /unix | |
parent | 7f1c98177bb27a45886fd7e42aa72bef9b1e4a0f (diff) | |
download | micropython-dbc0191d5f1cf51bdf628800ae24a70392be673f.tar.gz micropython-dbc0191d5f1cf51bdf628800ae24a70392be673f.zip |
unix: Add stackless config settings, for easy access.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mpconfigport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 014272e7ae..891ba82e5e 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -76,6 +76,9 @@ #define MICROPY_PY_IO_FILEIO (1) #define MICROPY_PY_GC_COLLECT_RETVAL (1) +#define MICROPY_STACKLESS (0) +#define MICROPY_STACKLESS_STRICT (0) + #define MICROPY_PY_UCTYPES (1) #define MICROPY_PY_UZLIB (1) #define MICROPY_PY_UJSON (1) |