diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-03 20:25:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-05-04 13:05:12 +0300 |
commit | 0116218fa89cc88d5d5ed7291c4f8d3412f78543 (patch) | |
tree | 6061dec7ff8f02670d8353effa5a121140bdd05d /unix | |
parent | c4dc1b5c230e2383ea2975d0afd34e11d23ead5d (diff) | |
download | micropython-0116218fa89cc88d5d5ed7291c4f8d3412f78543.tar.gz micropython-0116218fa89cc88d5d5ed7291c4f8d3412f78543.zip |
modmachine: Add new module to access hardware, starting with physical memory.
Refactored from "stm" module, provides mem8, mem16, mem32 objects with
array subscript syntax.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 8ffd475435..5e9b854bda 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -88,6 +88,7 @@ #define MICROPY_PY_UHEAPQ (1) #define MICROPY_PY_UHASHLIB (1) #define MICROPY_PY_UBINASCII (1) +#define MICROPY_PY_MACHINE (1) // Define to MICROPY_ERROR_REPORTING_DETAILED to get function, etc. // names in exception messages (may require more RAM). |