1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/candev/Makefile

22 lines
448 B
Makefile
Raw Normal View History

include ../Makefile.tests_common
2020-09-03 09:29:26 +02:00
# the test currently only works with can_linux, so on "native"
BOARD_WHITELIST := native
USEMODULE += shell
USEMODULE += can
USEMODULE += isrpipe
# define the CAN driver you want to use here
CAN_DRIVER ?= CAN_NATIVE
ifeq ($(CAN_DRIVER), PERIPH_CAN)
# periph_can modules/variables go here
else ifeq ($(CAN_DRIVER), CAN_NATIVE)
# can_native modules/variables go here
endif
include $(RIOTBASE)/Makefile.include