parent
804ba3c7d7
commit
8ac4f3332d
@ -1,3 +1,16 @@
|
||||
export INCLUDES += -I$(RIOTBOARD)/avsextrem/include
|
||||
|
||||
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
ifeq (,$(filter cc110x,$(USEMODULE)))
|
||||
USEMODULE += cc110x
|
||||
endif
|
||||
ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
USEMODULE += transceiver
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(filter cc110x,$(USEMODULE)))
|
||||
INCLUDES += -I$(RIOTBASE)/sys/net/include
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/msba2-common/Makefile.include
|
||||
|
@ -0,0 +1,8 @@
|
||||
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
ifeq (,$(filter cc110x_ng,$(USEMODULE)))
|
||||
USEMODULE += cc110x_ng
|
||||
endif
|
||||
ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
USEMODULE += transceiver
|
||||
endif
|
||||
endif
|
@ -1,3 +1,12 @@
|
||||
export INCLUDES += -I$(RIOTBOARD)/msba2/include
|
||||
|
||||
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
ifeq (,$(filter cc110x_ng,$(USEMODULE)))
|
||||
USEMODULE += cc110x_ng
|
||||
endif
|
||||
ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
USEMODULE += transceiver
|
||||
endif
|
||||
endif
|
||||
|
||||
include $(RIOTBOARD)/msba2-common/Makefile.include
|
||||
|
@ -0,0 +1,8 @@
|
||||
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
ifeq (,$(filter nativenet,$(USEMODULE)))
|
||||
USEMODULE += nativenet
|
||||
endif
|
||||
ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
USEMODULE += transceiver
|
||||
endif
|
||||
endif
|
@ -1,3 +1,13 @@
|
||||
export INCLUDES += -I$(RIOTBOARD)/pttu/include
|
||||
|
||||
# Enable this after fixing https://github.com/RIOT-OS/RIOT/issues/659
|
||||
#ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
# ifeq (,$(filter cc110x,$(USEMODULE)))
|
||||
# USEMODULE += cc110x
|
||||
# endif
|
||||
# ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
# USEMODULE += transceiver
|
||||
# endif
|
||||
#endif
|
||||
|
||||
include $(RIOTBOARD)/msba2-common/Makefile.include
|
||||
|
@ -1 +1,10 @@
|
||||
USEMODULE += msp430_common
|
||||
|
||||
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
|
||||
ifeq (,$(filter cc2420,$(USEMODULE)))
|
||||
USEMODULE += cc2420
|
||||
endif
|
||||
ifeq (,$(filter transceiver,$(USEMODULE)))
|
||||
USEMODULE += transceiver
|
||||
endif
|
||||
endif
|
||||
|
Loading…
Reference in New Issue