Merge pull request #8687 from bill88t/espcompile
Enable built-ins compile for all boards
This commit is contained in:
commit
156f417f70
2 changed files with 4 additions and 1 deletions
|
|
@ -47,7 +47,6 @@
|
|||
#define MICROPY_COMP_CONST_LITERAL (1)
|
||||
#define MICROPY_COMP_CONST_TUPLE (1)
|
||||
#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (1)
|
||||
#define MICROPY_ENABLE_COMPILER (1)
|
||||
#define MICROPY_ENABLE_EXTERNAL_IMPORT (1)
|
||||
#define MICROPY_FULL_CHECKS (1)
|
||||
#define MICROPY_HELPER_REPL (1)
|
||||
|
|
|
|||
|
|
@ -603,4 +603,8 @@ void background_callback_run_all(void);
|
|||
|
||||
#define MICROPY_PY_OPTIMIZE_PROPERTY_FLASH_SIZE (CIRCUITPY_OPTIMIZE_PROPERTY_FLASH_SIZE)
|
||||
|
||||
// Enable compiler functionality.
|
||||
#define MICROPY_ENABLE_COMPILER (1)
|
||||
#define MICROPY_PY_BUILTINS_COMPILE (1)
|
||||
|
||||
#endif // __INCLUDED_MPCONFIG_CIRCUITPY_H
|
||||
|
|
|
|||
Loading…
Reference in a new issue