summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Sanbeg <steve.sanbeg@gmail.com>2025-12-06 17:28:26 -0500
committerDamien George <damien@micropython.org>2025-12-08 09:15:25 +1100
commit504adc689bf1e56783b394b91ecc9d7a38ccf72e (patch)
tree3d4d56d88b4b22ed3d02bbad3495a5991b4bdcef
parent4d7c2fd18638565768eef011ef5dc6752cf34a61 (diff)
stm32/boards/NUCLEO_G474RE: Restore disabled modules on g474re.
Among other things, the framebuf module is missing on NUCEO_G474RE. This board seems to disable a lot of modules, while other *E boards with the same flash configuration (eg NUCLEO_F411RE) don't seem to disable any modules in this way. So, remove all of the lines disabling modules to make it consistent with other boards. Signed-off-by: Steve Sanbeg <steve.sanbeg@gmail.com>
-rw-r--r--ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h b/ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h
index e807a5478..66e533945 100644
--- a/ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h
+++ b/ports/stm32/boards/NUCLEO_G474RE/mpconfigboard.h
@@ -9,16 +9,6 @@
#define MICROPY_HW_HAS_SWITCH (1)
#define MICROPY_HW_HAS_FLASH (0) // QSPI extflash not mounted
-#define MICROPY_PY_ASYNCIO (0)
-#define MICROPY_PY_DEFLATE (0)
-#define MICROPY_PY_BINASCII (0)
-#define MICROPY_PY_HASHLIB (0)
-#define MICROPY_PY_JSON (0)
-#define MICROPY_PY_RE (0)
-#define MICROPY_PY_FRAMEBUF (0)
-#define MICROPY_PY_SOCKET (0)
-#define MICROPY_PY_NETWORK (0)
-
// The board has an 24MHz HSE, the following gives 170MHz CPU speed
#define MICROPY_HW_CLK_PLLM (6)
#define MICROPY_HW_CLK_PLLN (85)