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

32 lines
721 B
Makefile
Raw Normal View History

2017-06-26 17:12:42 +02:00
export APPLICATION = can_trx
include ../Makefile.tests_common
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps
USEMODULE += can_trx
TRX_TO_BUILD ?= tja1042
2017-06-26 17:12:42 +02:00
ifneq (,$(filter tja1042,$(TRX_TO_BUILD)))
2018-01-18 09:53:26 +01:00
USEMODULE += tja1042
TJA1042_STB_PIN ?= GPIO_PIN\(0,0\)
CFLAGS += -DTJA1042_STB_PIN=$(TJA1042_STB_PIN)
2018-01-18 09:53:26 +01:00
endif
ifneq (,$(filter ncv7356,$(TRX_TO_BUILD)))
USEMODULE += ncv7356
NCV7356_MODE0_PIN ?= GPIO_PIN\(0,0\)
NCV7356_MODE1_PIN ?= GPIO_PIN\(0,1\)
CFLAGS += -DNCV7356_MODE0_PIN=$(NCV7356_MODE0_PIN)
CFLAGS += -DNCV7356_MODE1_PIN=$(NCV7356_MODE1_PIN)
2017-06-26 17:12:42 +02:00
endif
# Some boards throw a missing-field-initializers error
CFLAGS += -Wno-missing-field-initializers
2017-06-26 17:12:42 +02:00
include $(RIOTBASE)/Makefile.include