1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/openwsn/Makefile.dep: allow to mock the scheduler

This commit is contained in:
Francisco Molina 2020-12-01 12:25:07 +01:00
parent 1d1e4b6e7b
commit 223c952586
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -17,7 +17,10 @@ ifneq (,$(filter openwsn_openstack,$(USEMODULE)))
endif
ifneq (,$(filter openwsn_scheduler,$(USEMODULE)))
USEMODULE += openwsn_riotos
# allow to mock the scheduler as needed
ifeq (,$(filter openwsn_scheduler_mock,$(USEMODULE)))
USEMODULE += openwsn_riotos
endif
endif
ifneq (,$(filter openwsn_riotos,$(USEMODULE)))