mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
34 lines
738 B
Plaintext
34 lines
738 B
Plaintext
ifneq (,$(findstring vtimer,$(USEMODULE)))
|
|
ifeq (,$(findstring hwtimer,$(USEMODULE)))
|
|
USEMODULE += hwtimer
|
|
endif
|
|
ifeq (,$(findstring timex,$(USEMODULE)))
|
|
USEMODULE += timex
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring uart0,$(USEMODULE)))
|
|
ifeq (,$(findstring lib,$(USEMODULE)))
|
|
USEMODULE += lib
|
|
endif
|
|
endif
|
|
|
|
ifneq (,$(findstring cc110x_ng,$(USEMODULE)))
|
|
ifneq (,$(findstring msba2,$(BOARD)))
|
|
USEMODULE += cc110x_spi
|
|
ifeq (,$(findstring gpioint,$(USEMODULE)))
|
|
USEMODULE += gpioint
|
|
endif
|
|
ifeq (,$(findstring hwtimer,$(USEMODULE)))
|
|
USEMODULE += hwtimer
|
|
endif
|
|
endif
|
|
ifneq (,$(findstring msb-430h,$(BOARD)))
|
|
USEMODULE += cc110x_spi
|
|
ifeq (,$(findstring hwtimer,$(USEMODULE)))
|
|
USEMODULE += hwtimer
|
|
endif
|
|
endif
|
|
endif
|
|
|