diff options
author | Damien George <damien.p.george@gmail.com> | 2017-06-01 15:43:20 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-06-01 16:02:49 +1000 |
commit | 6ff0ecfffcea4e7aa6301c54870ae97aa4a0cf72 (patch) | |
tree | 4029403c446530fa870310a45042e2d372754ab7 /esp8266 | |
parent | bc76302eab56368967af4f1cf8813ac816b9c22f (diff) | |
download | micropython-6ff0ecfffcea4e7aa6301c54870ae97aa4a0cf72.tar.gz micropython-6ff0ecfffcea4e7aa6301c54870ae97aa4a0cf72.zip |
ports: Convert from using stmhal's input() to core provided version.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 1 | ||||
-rw-r--r-- | esp8266/mpconfigport.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index a3da9d3986..cf4b288ca2 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -94,7 +94,6 @@ SRC_C = \ STM_SRC_C = $(addprefix stmhal/,\ pybstdio.c \ - input.c \ ) EXTMOD_SRC_C = $(addprefix extmod/,\ diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index c286bdcdd9..483f93d02b 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -39,6 +39,7 @@ #define MICROPY_PY_BUILTINS_SLICE (1) #define MICROPY_PY_BUILTINS_SLICE_ATTRS (1) #define MICROPY_PY_BUILTINS_PROPERTY (1) +#define MICROPY_PY_BUILTINS_INPUT (1) #define MICROPY_PY_BUILTINS_HELP (1) #define MICROPY_PY_BUILTINS_HELP_TEXT esp_help_text #define MICROPY_PY_BUILTINS_HELP_MODULES (1) @@ -147,7 +148,6 @@ void *esp_native_code_commit(void*, size_t); // extra built in names to add to the global namespace #define MICROPY_PORT_BUILTINS \ - { MP_OBJ_NEW_QSTR(MP_QSTR_input), (mp_obj_t)&mp_builtin_input_obj }, \ { MP_OBJ_NEW_QSTR(MP_QSTR_open), (mp_obj_t)&mp_builtin_open_obj }, // extra built in modules to add to the list of known ones |