mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
498 B
Makefile
16 lines
498 B
Makefile
PSEUDOMODULES += olimex_esp32_gateway
|
|
|
|
USEMODULE += boards_common_esp32
|
|
|
|
# enables esp_eth as network device
|
|
ifneq (,$(filter netdev_default gnrc_netdev_default,$(USEMODULE)))
|
|
# avoid multiple definitions when package depenedencies are resolved recursively
|
|
ifndef MODULE_ESP_ETH_ADDED
|
|
MODULE_ESP_ETH_ADDED = 1
|
|
USEMODULE += esp_eth
|
|
$(eval GNRC_NETIF_NUMOF=$(shell echo $$(($(GNRC_NETIF_NUMOF)+1))))
|
|
endif
|
|
endif
|
|
|
|
include $(RIOTBOARD)/common/esp32/Makefile.include
|