From ee692e47510855db369e62a28d2a081aff55d758 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Tue, 13 Aug 2024 15:07:13 +0100 Subject: [PATCH] Config: Shim core1_entry to fix a MicroPython bug. --- presto/mpconfigboard.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/presto/mpconfigboard.h b/presto/mpconfigboard.h index d9af249..611534f 100644 --- a/presto/mpconfigboard.h +++ b/presto/mpconfigboard.h @@ -10,4 +10,7 @@ #define MICROPY_HW_PSRAM_CS_PIN PIMORONI_PRESTO_PSRAM_CS_PIN #define MICROPY_HW_ENABLE_PSRAM (1) -#define MICROPY_PY_THREAD (0) \ No newline at end of file +#define MICROPY_PY_THREAD (0) + +// TODO: Remove when https://github.com/micropython/micropython/pull/15655 is merged +#define core1_entry (NULL) \ No newline at end of file