1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/can_trx/Makefile
2022-09-16 13:15:46 +02:00

32 lines
725 B
Makefile

export APPLICATION = can_trx
include ../Makefile.tests_common
USEMODULE += shell
USEMODULE += shell_cmds_default
USEMODULE += ps
USEMODULE += can_trx
TRX_TO_BUILD ?= tja1042
ifneq (,$(filter tja1042,$(TRX_TO_BUILD)))
USEMODULE += tja1042
TJA1042_STB_PIN ?= GPIO_PIN\(0,0\)
CFLAGS += -DTJA1042_STB_PIN=$(TJA1042_STB_PIN)
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)
endif
# Some boards throw a missing-field-initializers error
CFLAGS += -Wno-missing-field-initializers
include $(RIOTBASE)/Makefile.include