diff options
Diffstat (limited to 'zephyr/mpconfigport.h')
-rw-r--r-- | zephyr/mpconfigport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zephyr/mpconfigport.h b/zephyr/mpconfigport.h index 26fb1410fe..2cd5ffcecc 100644 --- a/zephyr/mpconfigport.h +++ b/zephyr/mpconfigport.h @@ -48,6 +48,8 @@ #define MICROPY_PY_BUILTINS_RANGE_ATTRS (0) #define MICROPY_PY_BUILTINS_REVERSED (0) #define MICROPY_PY_BUILTINS_SET (0) +#define MICROPY_PY_BUILTINS_HELP (1) +#define MICROPY_PY_BUILTINS_HELP_TEXT zephyr_help_text #define MICROPY_PY_ARRAY (0) #define MICROPY_PY_COLLECTIONS (0) #define MICROPY_PY_CMATH (0) @@ -114,5 +116,4 @@ extern const struct _mp_obj_module_t mp_module_time; // extra built in names to add to the global namespace #define MICROPY_PORT_BUILTINS \ - { MP_OBJ_NEW_QSTR(MP_QSTR_help), (mp_obj_t)&mp_builtin_help_obj }, \ |