summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2019-04-01 14:10:00 -0400
committerGitHub <noreply@github.com>2019-04-01 14:10:00 -0400
commit367f6584aea0791334cca734eebc39dc1b01af37 (patch)
tree9c8558d99eca84e34a16c389e53a5cb69cc988b5
parentbd4a156b9d0ce02300f0ca1cc01c582d0a01d3a1 (diff)
parent10e35f30f0540f3b9ccfb005566c1d5e00cd878b (diff)
Merge pull request #1734 from dhalbert/hallowing-shrink-build
shrink inline-limit to allow large Hallowing translation to fit
-rw-r--r--ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk10
1 files changed, 6 insertions, 4 deletions
diff --git a/ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk b/ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk
index 36cb67ea5..2920879de 100644
--- a/ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk
+++ b/ports/atmel-samd/boards/hallowing_m0_express/mpconfigboard.mk
@@ -9,6 +9,12 @@ EXTERNAL_FLASH_DEVICE_COUNT = 2
EXTERNAL_FLASH_DEVICES = "W25Q64JV_IQ, GD25Q64C"
LONGINT_IMPL = MPZ
+# To keep the build small
+CIRCUITPY_I2CSLAVE = 0
+CIRCUITPY_FREQUENCYIO = 0
+
+CFLAGS_INLINE_LIMIT = 55
+
CHIP_VARIANT = SAMD21G18A
CHIP_FAMILY = samd21
@@ -16,7 +22,3 @@ CHIP_FAMILY = samd21
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
-
-# To keep the build small
-CIRCUITPY_I2CSLAVE = 0
-CIRCUITPY_FREQUENCYIO = 0