mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 14:03:55 +01:00
Merge pull request #13685 from leandrolanzieri/pr/esp/cleanup_makefile_dep_include
cpu/esp[32, 8266, _common]: Move dependency resolutions to Makefile.dep
This commit is contained in:
commit
c8a2ff2406
@ -1,3 +1,5 @@
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
USEMODULE += boards_common_esp8266
|
||||
|
||||
ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
USEMODULE += saul_gpio
|
||||
endif
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
@ -1 +1,6 @@
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
# enables esp_eth as default network device
|
||||
ifneq (,$(filter netdev_default,$(USEMODULE)))
|
||||
USEMODULE += esp_eth
|
||||
endif
|
||||
|
||||
@ -1,11 +1,3 @@
|
||||
PSEUDOMODULES += olimex_esp32_gateway
|
||||
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
# enables esp_eth as default network device
|
||||
# cannot be done in Makefile.dep since Makefile.dep is included too late
|
||||
ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
|
||||
USEMODULE += esp_eth
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.include
|
||||
|
||||
@ -2,6 +2,4 @@ ifneq (,$(filter esp32_ttgo_t_beam_v1_0,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += periph_i2c
|
||||
endif
|
||||
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
USEMODULE += boards_common_esp32
|
||||
USEMODULE += esp_spi_ram
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp32
|
||||
|
||||
include $(RIOTBOARD)/common/esp32/Makefile.dep
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp8266
|
||||
|
||||
include $(RIOTBOARD)/common/esp8266/Makefile.dep
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp8266
|
||||
|
||||
include $(RIOTBOARD)/common/esp8266/Makefile.dep
|
||||
|
||||
@ -1,3 +1 @@
|
||||
USEMODULE += boards_common_esp8266
|
||||
|
||||
include $(RIOTBOARD)/common/esp8266/Makefile.dep
|
||||
|
||||
@ -2,9 +2,14 @@
|
||||
|
||||
include $(RIOTCPU)/esp_common/Makefile.dep
|
||||
|
||||
USEMODULE += esp_idf_driver
|
||||
USEMODULE += esp_idf_esp32
|
||||
USEMODULE += esp_idf_soc
|
||||
USEMODULE += pm_layered
|
||||
|
||||
ifneq (,$(filter cpp,$(FEATURES_USED)))
|
||||
USEMODULE += pthread
|
||||
BASELIBS += -lstdc++
|
||||
USEMODULE += esp_cxx
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_eth,$(USEMODULE)))
|
||||
@ -52,6 +57,10 @@ ifneq (,$(filter esp_rtc_timer_32k,$(USEMODULE)))
|
||||
USEMODULE += esp_rtc_timer
|
||||
endif
|
||||
|
||||
ifneq (,$(filter periph_adc periph_dac,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += periph_adc_ctrl
|
||||
endif
|
||||
|
||||
ifneq (,$(filter periph_i2c,$(USEMODULE)))
|
||||
ifneq (,$(filter esp_i2c_hw,$(USEMODULE)))
|
||||
USEMODULE += core_thread_flags
|
||||
|
||||
@ -4,4 +4,5 @@ include $(RIOTCPU)/esp_common/Makefile.features
|
||||
|
||||
FEATURES_PROVIDED += arch_esp32
|
||||
FEATURES_PROVIDED += esp_wifi_enterprise
|
||||
FEATURES_PROVIDED += periph_adc_ctrl
|
||||
FEATURES_PROVIDED += periph_rtc
|
||||
|
||||
@ -18,18 +18,6 @@ FLASH_FREQ = 40m # DO NOT CHANGE
|
||||
FLASH_SIZE ?= 4
|
||||
BOOTLOADER_POS = 0x1000
|
||||
|
||||
# SPECIAL module dependencies
|
||||
# cannot be done in Makefile.dep since Makefile.dep is included too late
|
||||
|
||||
ifneq (,$(filter cpp,$(FEATURES_USED)))
|
||||
USEMODULE += esp_cxx
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_now esp_wifi esp_spi_ram,$(USEMODULE)))
|
||||
# the ESP-IDF heap has to be used if any WiFi interface or SPI RAM is used
|
||||
USEMODULE += esp_idf_heap
|
||||
endif
|
||||
|
||||
include $(RIOTCPU)/esp_common/Makefile.include
|
||||
|
||||
# regular Makefile
|
||||
@ -46,12 +34,6 @@ PSEUDOMODULES += esp_rtc_timer_32k
|
||||
PSEUDOMODULES += esp_spi_ram
|
||||
PSEUDOMODULES += esp_wifi_enterprise
|
||||
|
||||
USEMODULE += esp_idf_driver
|
||||
USEMODULE += esp_idf_esp32
|
||||
USEMODULE += esp_idf_soc
|
||||
USEMODULE += periph_adc_ctrl
|
||||
USEMODULE += pm_layered
|
||||
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/include
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor/esp-idf/include/esp32
|
||||
@ -69,15 +51,6 @@ INCLUDES += -I$(RIOTCPU)/$(CPU)
|
||||
CFLAGS += -DSDK_NOT_USED -DCONFIG_FREERTOS_UNICORE=1 -DESP_PLATFORM
|
||||
CFLAGS += -DLOG_TAG_IN_BRACKETS
|
||||
|
||||
ifneq (,$(filter esp_now esp_wifi,$(USEMODULE)))
|
||||
BASELIBS += -lcore -lrtc -lnet80211 -lpp -lcoexist
|
||||
BASELIBS += -lwps -lwpa -lwpa2 -lphy -lstdc++
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_now,$(USEMODULE)))
|
||||
BASELIBS += -lespnow -lmesh
|
||||
endif
|
||||
|
||||
LINKFLAGS += -L$(RIOTCPU)/$(CPU)/ld/
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.ld
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.common.ld
|
||||
@ -86,9 +59,19 @@ LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.rom.ld
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp32.rom.nanofmt.ld
|
||||
LINKFLAGS += -nostdlib -lgcc -Wl,-gc-sections
|
||||
|
||||
ifneq (,$(filter esp_cxx,$(USEMODULE)))
|
||||
UNDEF += $(BINDIR)/esp_cxx/cxa_guard.o
|
||||
endif
|
||||
# Baselibs needed when using esp_wifi_any pseudomodule
|
||||
_ESP_WIFI_ANY_BASELIBS = -lcore -lrtc -lnet80211 -lpp -lcoexist -lwps -lwpa -lwpa2
|
||||
_ESP_WIFI_ANY_BASELIBS += -lphy -lstdc++
|
||||
|
||||
# Baselibs needed when using esp_now module
|
||||
_ESP_NOW_BASELIBS = -lespnow -lmesh
|
||||
|
||||
# NOTE: These checks can be turned into a normal conditional when #9913 is fixed
|
||||
BASELIBS += $(if $(filter esp_wifi_any,$(USEMODULE)),$(_ESP_WIFI_ANY_BASELIBS))
|
||||
BASELIBS += $(if $(filter esp_now,$(USEMODULE)),$(_ESP_NOW_BASELIBS))
|
||||
|
||||
UNDEF += $(if $(filter cpp,$(FEATURES_USED)),$(BINDIR)/esp_cxx/cxa_guard.o)
|
||||
BASELIBS += $(if $(filter cpp,$(FEATURES_USED)),-lstdc++)
|
||||
|
||||
# additional flasher configuration for ESP32 QEMU
|
||||
ifneq (,$(filter esp_qemu,$(USEMODULE)))
|
||||
|
||||
@ -2,6 +2,17 @@
|
||||
|
||||
include $(RIOTCPU)/esp_common/Makefile.dep
|
||||
|
||||
USEMODULE += esp_idf_esp8266
|
||||
USEMODULE += esp_idf_nvs_flash
|
||||
USEMODULE += esp_idf_spi_flash
|
||||
USEMODULE += esp_idf_util
|
||||
USEMODULE += esp_idf_wpa_supplicant_crypto
|
||||
USEMODULE += esp_sdk
|
||||
USEMODULE += mtd
|
||||
USEMODULE += newlib
|
||||
USEMODULE += periph_common
|
||||
USEMODULE += ps
|
||||
|
||||
ifneq (,$(filter periph_i2c,$(USEMODULE)))
|
||||
USEMODULE += esp_i2c_sw
|
||||
USEMODULE += periph_i2c_sw
|
||||
|
||||
@ -28,17 +28,6 @@ TARGET_ARCH ?= xtensa-esp8266-elf
|
||||
|
||||
PSEUDOMODULES += esp_sw_timer
|
||||
|
||||
USEMODULE += esp_idf_esp8266
|
||||
USEMODULE += esp_idf_nvs_flash
|
||||
USEMODULE += esp_idf_spi_flash
|
||||
USEMODULE += esp_idf_util
|
||||
USEMODULE += esp_idf_wpa_supplicant_crypto
|
||||
USEMODULE += esp_sdk
|
||||
USEMODULE += mtd
|
||||
USEMODULE += newlib
|
||||
USEMODULE += periph_common
|
||||
USEMODULE += ps
|
||||
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)/include
|
||||
INCLUDES += -I$(RIOTCPU)/$(CPU)/vendor
|
||||
@ -59,18 +48,14 @@ INCLUDES += -I$(ESP8266_RTOS_SDK_DIR)/components/spi_flash/include
|
||||
|
||||
CFLAGS += -D__ESP_FILE__=__FILE__
|
||||
|
||||
ifneq (,$(filter esp_gdbstub,$(USEMODULE)))
|
||||
GDBSTUB_DIR ?= $(RIOTCPU)/$(CPU)/vendor/esp-gdbstub
|
||||
CFLAGS += -DGDBSTUB_BREAK_ON_INIT=1
|
||||
INCLUDES += -I$(GDBSTUB_DIR)
|
||||
endif
|
||||
# NOTE: These can be turned into normal conditionals after #9913 is fixed
|
||||
GDBSTUB_DIR ?= $(if $(filter esp_gdbstub,$(USEMODULE)),$(RIOTCPU)/$(CPU)/vendor/esp-gdbstub)
|
||||
CFLAGS += $(if $(filter esp_gdbstub,$(USEMODULE)),-DGDBSTUB_BREAK_ON_INIT=1)
|
||||
INCLUDES += $(if $(filter esp_gdbstub,$(USEMODULE)),-I$(GDBSTUB_DIR))
|
||||
BASELIBS += $(if $(filter esp_now, $(USEMODULE)), -lespnow)
|
||||
|
||||
BASELIBS += -lgcc -lwpa -lcore -lnet80211 -lphy -lpp -lstdc++
|
||||
|
||||
ifneq (, $(filter esp_now, $(USEMODULE)))
|
||||
BASELIBS += -lespnow
|
||||
endif
|
||||
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp8266.rom.ld
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp8266.riot-os.ld
|
||||
LINKFLAGS += -T$(RIOTCPU)/$(CPU)/ld/esp8266.peripherals.ld
|
||||
|
||||
@ -1,5 +1,52 @@
|
||||
# additional modules dependencies
|
||||
|
||||
# Modules used by ESP*
|
||||
|
||||
USEMODULE += esp_common
|
||||
USEMODULE += esp_common_periph
|
||||
USEMODULE += esp_freertos
|
||||
USEMODULE += esp_idf
|
||||
USEMODULE += log
|
||||
USEMODULE += newlib
|
||||
USEMODULE += periph
|
||||
USEMODULE += periph_hwrng
|
||||
USEMODULE += periph_flash
|
||||
USEMODULE += periph_uart
|
||||
USEMODULE += random
|
||||
USEMODULE += stdio_uart
|
||||
USEMODULE += xtensa
|
||||
|
||||
ifneq (,$(filter esp_wifi_enterprise,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += esp_wifi_enterprise
|
||||
USEMODULE += esp_wifi
|
||||
endif
|
||||
|
||||
ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
|
||||
ifneq (,$(filter lwip,$(USEMODULE)))
|
||||
# for lwip, use esp_wifi as default netdev if no other netdev is enabled
|
||||
ifeq (,$(filter esp_eth,$(USEMODULE)))
|
||||
USEMODULE += esp_wifi
|
||||
endif
|
||||
else
|
||||
# otherwise use esp_now as default netdev if no other netdev is enabled
|
||||
ifeq (,$(filter esp_wifi esp_eth,$(USEMODULE)))
|
||||
USEMODULE += esp_now
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_gdbstub,$(USEMODULE)))
|
||||
USEMODULE += esp_gdb
|
||||
endif
|
||||
|
||||
ifneq (,$(filter log_color,$(USEMODULE)))
|
||||
USEMODULE += esp_log_colored
|
||||
endif
|
||||
|
||||
ifneq (,$(filter 4 5,$(LOG_LEVEL)))
|
||||
USEMODULE += esp_log_startup
|
||||
endif
|
||||
|
||||
# each device has SPI flash memory, but it has to be enabled explicitly
|
||||
ifneq (,$(filter esp_spiffs,$(USEMODULE)))
|
||||
USEMODULE += spiffs
|
||||
|
||||
@ -4,40 +4,6 @@
|
||||
# use flash mode dout by default to keep GPIO9 and GPIO10 free for use
|
||||
FLASH_MODE ?= dout
|
||||
|
||||
# SPECIAL module dependencies
|
||||
# cannot be done in Makefile.dep since Makefile.dep is included too late
|
||||
|
||||
ifneq (,$(filter esp_wifi_enterprise,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += esp_wifi_enterprise
|
||||
USEMODULE += esp_wifi
|
||||
endif
|
||||
|
||||
ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
|
||||
ifneq (,$(filter lwip,$(USEMODULE)))
|
||||
# for lwip, use esp_wifi as default netdev if no other netdev is enabled
|
||||
ifeq (,$(filter esp_eth,$(USEMODULE)))
|
||||
USEMODULE += esp_wifi
|
||||
endif
|
||||
else
|
||||
# otherwise use esp_now as default netdev if no other netdev is enabled
|
||||
ifeq (,$(filter esp_wifi esp_eth,$(USEMODULE)))
|
||||
USEMODULE += esp_now
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_gdbstub,$(USEMODULE)))
|
||||
USEMODULE += esp_gdb
|
||||
endif
|
||||
|
||||
ifneq (,$(filter log_color,$(USEMODULE)))
|
||||
USEMODULE += esp_log_colored
|
||||
endif
|
||||
|
||||
ifneq (,$(filter 4 5,$(LOG_LEVEL)))
|
||||
USEMODULE += esp_log_startup
|
||||
endif
|
||||
|
||||
# ESP* pseudomodules
|
||||
|
||||
PSEUDOMODULES += esp_gdb
|
||||
@ -49,22 +15,6 @@ PSEUDOMODULES += esp_qemu
|
||||
PSEUDOMODULES += esp_spiffs
|
||||
PSEUDOMODULES += esp_wifi_any
|
||||
|
||||
# Modules used by ESP*
|
||||
|
||||
USEMODULE += esp_common
|
||||
USEMODULE += esp_common_periph
|
||||
USEMODULE += esp_freertos
|
||||
USEMODULE += esp_idf
|
||||
USEMODULE += log
|
||||
USEMODULE += newlib
|
||||
USEMODULE += periph
|
||||
USEMODULE += periph_hwrng
|
||||
USEMODULE += periph_flash
|
||||
USEMODULE += periph_uart
|
||||
USEMODULE += random
|
||||
USEMODULE += stdio_uart
|
||||
USEMODULE += xtensa
|
||||
|
||||
# Common includes
|
||||
|
||||
INCLUDES += -I$(RIOTBOARD)/common/$(CPU)/include
|
||||
@ -90,12 +40,9 @@ ASFLAGS += --longcalls --text-section-literals
|
||||
ARFLAGS = rcs
|
||||
|
||||
CFLAGS_DBG ?= -ggdb -g3
|
||||
CFLAGS_OPT ?= -Os
|
||||
|
||||
# override default CFLAGS_OPT in case module esp_gdb is enabled
|
||||
ifneq (,$(filter esp_gdb,$(USEMODULE)))
|
||||
CFLAGS_OPT = -Og
|
||||
endif
|
||||
CFLAGS_OPT ?= $(if $(filter esp_gdb,$(USEMODULE)),-Og,-Os)
|
||||
|
||||
CFLAGS += $(CFLAGS_OPT) $(CFLAGS_DBG)
|
||||
|
||||
@ -104,14 +51,9 @@ ifneq (,$(filter esp_qemu,$(USEMODULE)))
|
||||
CFLAGS += -DQEMU
|
||||
endif
|
||||
|
||||
# NOTE: These checks can be turned into normal conditionals when #9913 is fixed
|
||||
# use 32 priority levels if any WiFi interface or the ETH interface is used
|
||||
ifneq (,$(filter esp_wifi esp_now esp_eth,$(USEMODULE)))
|
||||
CFLAGS += -DSCHED_PRIO_LEVELS=32
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_wifi esp_now esp_eth,$(USEMODULE)))
|
||||
INCLUDES += -I$(RIOTCPU)/esp_common/esp-wifi
|
||||
endif
|
||||
CFLAGS += $(if $(filter esp_wifi_any esp_eth,$(USEMODULE)),-DSCHED_PRIO_LEVELS=32)
|
||||
|
||||
# The threads for handling the ESP hardware have the priorities from 2 to 4.
|
||||
# The priority of lwIP TCPIP thread should be lower than these priorities.
|
||||
@ -120,23 +62,15 @@ ifneq (,$(filter lwip,$(USEMODULE)))
|
||||
endif
|
||||
|
||||
# if SPI RAM is enabled, the qout flash mode has to be used
|
||||
ifneq (,$(filter esp_spi_ram,$(USEMODULE)))
|
||||
FLASH_MODE = qout
|
||||
CFLAGS += -DFLASH_MODE_QOUT=1
|
||||
else
|
||||
ifeq ($(FLASH_MODE), qio)
|
||||
CFLAGS += -DFLASH_MODE_QIO=1
|
||||
endif
|
||||
ifeq ($(FLASH_MODE), qout)
|
||||
CFLAGS += -DFLASH_MODE_QOUT=1
|
||||
endif
|
||||
ifeq ($(FLASH_MODE), dio)
|
||||
CFLAGS += -DFLASH_MODE_DIO=1
|
||||
endif
|
||||
ifeq ($(FLASH_MODE), dout)
|
||||
CFLAGS += -DFLASH_MODE_DOUT=1
|
||||
endif
|
||||
endif
|
||||
# NOTE: These checks can be turned into normal conditionals when #9913 is fixed
|
||||
_FLASH_MODE_PREV := $(FLASH_MODE)
|
||||
FLASH_MODE = $(if $(filter esp_spi_ram,$(USEMODULE)),qout,$(_FLASH_MODE_PREV))
|
||||
|
||||
# set CFLAG for the correspondant FLASH_MODE
|
||||
CFLAGS += $(if $(findstring qout,$(FLASH_MODE)),-DFLASH_MODE_QOUT=1)
|
||||
CFLAGS += $(if $(findstring qio,$(FLASH_MODE)),-DFLASH_MODE_QIO=1)
|
||||
CFLAGS += $(if $(findstring dio,$(FLASH_MODE)),-DFLASH_MODE_DIO=1)
|
||||
CFLAGS += $(if $(findstring dout,$(FLASH_MODE)),-DFLASH_MODE_DOUT=1)
|
||||
|
||||
BASELIBS += -lhal -lg -lc
|
||||
|
||||
@ -148,13 +82,9 @@ LINKFLAGS += -nostdlib -Wl,-gc-sections -Wl,-static
|
||||
# LINKFLAGS += -Wl,--verbose
|
||||
# LINKFLAGS += -Wl,--print-gc-sections
|
||||
|
||||
ifneq (,$(filter esp_log_colored,$(USEMODULE)))
|
||||
BOOTLOADER_COLOR = _colors
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_log_startup,$(USEMODULE)))
|
||||
BOOTLOADER_INFO = _info
|
||||
endif
|
||||
# NOTE: These checks can be turned into normal conditionals when #9913 is fixed
|
||||
BOOTLOADER_COLOR = $(if $(filter esp_log_colored,$(USEMODULE)),_colors)
|
||||
BOOTLOADER_INFO = $(if $(filter esp_log_startup,$(USEMODULE)),_info)
|
||||
|
||||
BOOTLOADER_BIN = bootloader$(BOOTLOADER_COLOR)$(BOOTLOADER_INFO).bin
|
||||
|
||||
@ -202,26 +132,7 @@ else
|
||||
FFLAGS += 0x10000 $(FLASHFILE).bin
|
||||
endif
|
||||
|
||||
# NOTE: These checks can be turned into normal conditionals when #9913 is fixed
|
||||
# increase the test timeout for file system tests that use the SPI flash drive
|
||||
|
||||
ifneq (,$(filter spiffs,$(USEMODULE)))
|
||||
export RIOT_TEST_TIMEOUT = 120
|
||||
endif
|
||||
|
||||
ifneq (,$(filter littlefs,$(USEMODULE)))
|
||||
export RIOT_TEST_TIMEOUT = 120
|
||||
endif
|
||||
|
||||
# increase the number of netif for each enabled network interface
|
||||
|
||||
ifneq (,$(filter esp_wifi,$(USEMODULE)))
|
||||
$(eval GNRC_NETIF_NUMOF=$(shell echo $$(($(GNRC_NETIF_NUMOF)+1))))
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_now,$(USEMODULE)))
|
||||
$(eval GNRC_NETIF_NUMOF=$(shell echo $$(($(GNRC_NETIF_NUMOF)+1))))
|
||||
endif
|
||||
|
||||
ifneq (,$(filter esp_eth,$(USEMODULE)))
|
||||
$(eval GNRC_NETIF_NUMOF=$(shell echo $$(($(GNRC_NETIF_NUMOF)+1))))
|
||||
endif
|
||||
RIOT_TEST_TIMEOUT = $(if $(filter spiffs littlefs,$(USEMODULE)),120)
|
||||
$(call target-export-variables,test,RIOT_TEST_TIMEOUT)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user