mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
16 lines
377 B
Makefile
16 lines
377 B
Makefile
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the
|
|
# moment.
|
|
FEATURES_REQUIRED += arch_32bit
|
|
|
|
DEFAULT_MODULE += auto_init_lwip
|
|
|
|
ifneq (,$(filter lwip_sock_async,$(USEMODULE)))
|
|
USEMODULE += sock_async
|
|
endif
|
|
|
|
ifneq (,$(filter stm32_eth,$(USEMODULE)))
|
|
ifneq (,$(filter lwip_dhcp_auto,$(USEMODULE)))
|
|
USEMODULE += stm32_eth_link_up
|
|
endif
|
|
endif
|