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

csma_sender: fix dependencies

This commit is contained in:
Martine Lenders 2016-06-05 13:11:32 +02:00
parent b0d5b6d15e
commit 1b74fcab6e
2 changed files with 6 additions and 4 deletions

View File

@ -10,6 +10,11 @@ ifneq (,$(filter ccn-lite,$(USEPKG)))
export CFLAGS += -DCCNL_RIOT
endif
ifneq (,$(filter gnrc_csma_sender,$(USEMODULE)))
USEMODULE += random
USEMODULE += xtimer
endif
ifneq (,$(filter nhdp,$(USEMODULE)))
USEMODULE += conn_udp
USEMODULE += xtimer

View File

@ -1,6 +1,3 @@
MODULE = gnrc_csma_sender
USEMODULE += xtimer
USEMODULE += random
MODULE := gnrc_csma_sender
include $(RIOTBASE)/Makefile.base