Skip to content

Commit b799ee8

Browse files
authored
Merge pull request #9243 from Bridgetek/main
espressif: Enable the _eve module
2 parents 0b72f71 + ac552b2 commit b799ee8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ports/espressif/mpconfigport.mk

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
4545
CIRCUITPY_WATCHDOG ?= 1
4646
CIRCUITPY_WIFI ?= 1
4747

48+
# Enable _eve module
49+
CIRCUITPY__EVE ?= 1
50+
4851
# Conditionally turn off modules/features
4952
ifeq ($(IDF_TARGET),esp32)
5053
# Modules
@@ -187,6 +190,11 @@ CIRCUITPY_AUDIOMP3 = 0
187190
CIRCUITPY_BLEIO = 0
188191
endif
189192

193+
# No room for _eve on boards with 4MB flash
194+
ifeq ($(CIRCUITPY_ESP_FLASH_SIZE),4MB)
195+
CIRCUITPY__EVE = 0
196+
endif
197+
190198
# Modules dependent on other modules
191199
CIRCUITPY_ESPNOW ?= $(CIRCUITPY_WIFI)
192200
CIRCUITPY_GIFIO ?= $(CIRCUITPY_DISPLAYIO)

0 commit comments

Comments
 (0)