diff options
| author | Jeff Epler <jepler@unpythonic.net> | 2020-04-13 19:58:52 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@unpythonic.net> | 2020-04-13 19:58:52 -0500 |
| commit | db01f88cc32ddb307c09692eb28ef29389c774cb (patch) | |
| tree | c792218bf563aa16814079ffa29278123d0f9cfd | |
| parent | d19700e975cb73f66863d2b735843318fdad353e (diff) | |
enable MICROPY_PY_REVERSE_SPECIAL_METHODS where ulab is enabled
| -rw-r--r-- | ports/cxd56/boards/spresense/mpconfigboard.h | 3 | ||||
| -rw-r--r-- | ports/mimxrt10xx/mpconfigport.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/cxd56/boards/spresense/mpconfigboard.h b/ports/cxd56/boards/spresense/mpconfigboard.h index 0245e2045..c53f6b418 100644 --- a/ports/cxd56/boards/spresense/mpconfigboard.h +++ b/ports/cxd56/boards/spresense/mpconfigboard.h @@ -36,3 +36,6 @@ #define DEFAULT_UART_BUS_RX (&pin_UART2_RXD) #define DEFAULT_UART_BUS_TX (&pin_UART2_TXD) + +#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1) + diff --git a/ports/mimxrt10xx/mpconfigport.h b/ports/mimxrt10xx/mpconfigport.h index 745c12f7d..7e7df0123 100644 --- a/ports/mimxrt10xx/mpconfigport.h +++ b/ports/mimxrt10xx/mpconfigport.h @@ -44,7 +44,7 @@ extern uint8_t _ld_default_stack_size; #define MICROPY_PY_FUNCTION_ATTRS (0) #define MICROPY_PY_IO (1) #define MICROPY_PY_UJSON (1) -#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0) +#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1) #define CIRCUITPY_INTERNAL_FLASH_FILESYSTEM_START_ADDR ((uint32_t) &_ld_filesystem_start) |
