diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-04-26 21:41:16 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-04-27 07:47:05 -0500 |
| commit | 485f66714156f797d381662ea5992f4f5ac92b80 (patch) | |
| tree | 3017aefcb1bb45b5c3050388499307c9c098545c | |
| parent | 1a6df71cecbfdfe0a2d1fbe081ead2cbce48cf29 (diff) | |
ulab: disable on espruino pico
this non-"express" board is nearly full. Right now it's actually possible
just to disable the "compare" module, but as this leaves it packed
pretty full I prefer to fully disable it in order to avoid the topic
returning again soon.
| -rw-r--r-- | ports/stm/boards/espruino_pico/mpconfigboard.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ports/stm/boards/espruino_pico/mpconfigboard.mk b/ports/stm/boards/espruino_pico/mpconfigboard.mk index b7937dd04..054937c33 100644 --- a/ports/stm/boards/espruino_pico/mpconfigboard.mk +++ b/ports/stm/boards/espruino_pico/mpconfigboard.mk @@ -13,3 +13,8 @@ MCU_PACKAGE = UFQFPN48 LD_COMMON = boards/common_default.ld LD_FILE = boards/STM32F401xd_fs.ld # use for internal flash +# Disable ulab as we're nearly out of space on this board due to +# INTERNAL_FLASH_FILESYSTEM. It can probably be reenabled if we enable +# lto for this port, and if other stuff hasn't been added in the +# meantime +CIRCUITPY_ULAB = 0 |
