diff options
| author | Damien George <damien@micropython.org> | 2024-01-29 12:19:06 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-01-29 12:19:06 +1100 |
| commit | 7211bafb336b0a22746481489c3252085e78b42a (patch) | |
| tree | c85a99df254279b9dd01081dc7395a6acced402b | |
| parent | 4a2e510a877fc5b9256b2717acba8ac772e04a6e (diff) | |
esp8266/boards/ESP8266_GENERIC: Disable MICROPY_DEBUG_PRINTERS.
This is not enabled on any other MCU port, and is essentially unused on
esp8266 because mp_verbose_flag is always 0. Disabling saves ~7k of flash.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h b/ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h index 3a9c40e79..1f679961e 100644 --- a/ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h +++ b/ports/esp8266/boards/ESP8266_GENERIC/mpconfigboard.h @@ -7,7 +7,6 @@ #define MICROPY_EMIT_XTENSA (1) #define MICROPY_EMIT_INLINE_XTENSA (1) -#define MICROPY_DEBUG_PRINTERS (1) #define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_NORMAL) #define MICROPY_READER_VFS (MICROPY_VFS) @@ -24,7 +23,6 @@ #define MICROPY_EMIT_XTENSA (1) #define MICROPY_EMIT_INLINE_XTENSA (1) -#define MICROPY_DEBUG_PRINTERS (1) #define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_NORMAL) #define MICROPY_READER_VFS (MICROPY_VFS) |
