We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b72f71 + ac552b2 commit b799ee8Copy full SHA for b799ee8
ports/espressif/mpconfigport.mk
@@ -45,6 +45,9 @@ CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
45
CIRCUITPY_WATCHDOG ?= 1
46
CIRCUITPY_WIFI ?= 1
47
48
+# Enable _eve module
49
+CIRCUITPY__EVE ?= 1
50
+
51
# Conditionally turn off modules/features
52
ifeq ($(IDF_TARGET),esp32)
53
# Modules
@@ -187,6 +190,11 @@ CIRCUITPY_AUDIOMP3 = 0
187
190
CIRCUITPY_BLEIO = 0
188
191
endif
189
192
193
+# No room for _eve on boards with 4MB flash
194
+ifeq ($(CIRCUITPY_ESP_FLASH_SIZE),4MB)
195
+CIRCUITPY__EVE = 0
196
+endif
197
198
# Modules dependent on other modules
199
CIRCUITPY_ESPNOW ?= $(CIRCUITPY_WIFI)
200
CIRCUITPY_GIFIO ?= $(CIRCUITPY_DISPLAYIO)
0 commit comments