summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/bare-arm/Makefile2
-rw-r--r--ports/bare-arm/README.md2
-rw-r--r--ports/bare-arm/mpconfigport.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/ports/bare-arm/Makefile b/ports/bare-arm/Makefile
index 455a9dc5a..1a21eb56a 100644
--- a/ports/bare-arm/Makefile
+++ b/ports/bare-arm/Makefile
@@ -5,7 +5,7 @@ include ../../py/mkenv.mk
include $(TOP)/py/py.mk
# Set makefile-level MicroPython feature configurations.
-MICROPY_ROM_TEXT_COMPRESSION ?= 1
+MICROPY_ROM_TEXT_COMPRESSION ?= 0
# Define toolchain and other tools.
CROSS_COMPILE ?= arm-none-eabi-
diff --git a/ports/bare-arm/README.md b/ports/bare-arm/README.md
index 496ee9c75..dfa5534d5 100644
--- a/ports/bare-arm/README.md
+++ b/ports/bare-arm/README.md
@@ -18,4 +18,4 @@ compiled and executed when the firmware starts. They produce output on the
system's stdout.
The size of the firmware (the machine code that is programmed to the
-microcontroller's flash/ROM) is currently around 61200 bytes.
+microcontroller's flash/ROM) is currently around 57900 bytes.
diff --git a/ports/bare-arm/mpconfigport.h b/ports/bare-arm/mpconfigport.h
index 41b6ee71a..3bebc3159 100644
--- a/ports/bare-arm/mpconfigport.h
+++ b/ports/bare-arm/mpconfigport.h
@@ -37,7 +37,7 @@
// Python internal features
#define MICROPY_ENABLE_EXTERNAL_IMPORT (0)
-#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_TERSE)
+#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_NONE)
#define MICROPY_CPYTHON_COMPAT (0)
#define MICROPY_MODULE_GETATTR (0)
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (0)