mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
61679fb5f9
Now that OpenWSN depends on netif_openwsn, there is no need for manually tracking which boards are supported
21 lines
477 B
Makefile
21 lines
477 B
Makefile
BOARD ?= samr21-xpro
|
|
|
|
include ../Makefile.pkg_common
|
|
|
|
USEPKG += openwsn
|
|
USEMODULE += openwsn_openstack
|
|
USEMODULE += openwsn_scheduler
|
|
USEMODULE += sock_udp
|
|
|
|
# Mock OpenWSN scheduler to handle the udp_transmit task.
|
|
USEMODULE += openwsn_scheduler_mock
|
|
EXTERNAL_MODULE_DIRS += external_modules
|
|
|
|
# Explicitly include ztimer to enable timeout
|
|
USEMODULE += ztimer_usec
|
|
DISABLE_MODULE += auto_init_openwsn
|
|
|
|
CFLAGS +=-DCONFIG_OPENWSN_NETIF_ID=31
|
|
|
|
include $(RIOTBASE)/Makefile.include
|