1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

cpu/esp32: number of thread priorities for esp_eth

The number of thread priority levels has to be 32 if esp_eth is used.
This commit is contained in:
Gunar Schorcht 2019-11-22 17:32:37 +01:00
parent f04df728cb
commit afff683696

View File

@ -109,7 +109,7 @@ INCLUDES += -I$(RIOTBOARD)/common/$(CPU)/include
INCLUDES += -I$(RIOTCPU)/$(CPU)
# if any WiFi interface is used, the number of priority levels has to be 32
ifneq (,$(filter esp_wifi_any,$(USEMODULE)))
ifneq (,$(filter esp_wifi_any esp_eth,$(USEMODULE)))
CFLAGS += -DSCHED_PRIO_LEVELS=32
endif