We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91cf8fb commit 7a360c3Copy full SHA for 7a360c3
2 files changed
ports/espressif/mpconfigport.h
@@ -22,6 +22,9 @@
22
#define MICROPY_NLR_SETJMP (1)
23
#define CIRCUITPY_DEFAULT_STACK_SIZE 0x6000
24
25
+// PSRAM can require more stack space for GC.
26
+#define MICROPY_ALLOC_GC_STACK_SIZE (128)
27
+
28
// Nearly all boards have this because it is used to enter the ROM bootloader.
29
#ifndef CIRCUITPY_BOOT_BUTTON
30
#if defined(CONFIG_IDF_TARGET_ESP32C2) || defined(CONFIG_IDF_TARGET_ESP32C3) || defined(CONFIG_IDF_TARGET_ESP32C6) || defined(CONFIG_IDF_TARGET_ESP32H2)
ports/raspberrypi/mpconfigport.h
@@ -14,6 +14,9 @@
14
15
#ifdef PICO_RP2350
16
#define MICROPY_PY_SYS_PLATFORM "RP2350"
17
18
19
20
#endif
21
// Setting a non-default value also requires a non-default link.ld
0 commit comments