1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/candev/Makefile
Vincent Dupont e2fa5bcb7c tests/candev: adapt to use periph_can
This makes tests/candev use periph_can by default instead of old native
specific driver.
2020-09-30 12:59:03 +02:00

18 lines
316 B
Makefile

include ../Makefile.tests_common
USEMODULE += shell
USEMODULE += can
USEMODULE += isrpipe
FEATURES_OPTIONAL += periph_can
# define the CAN driver you want to use here
CAN_DRIVER ?= CAN_EXT
ifeq ($(CAN_DRIVER), CAN_EXT)
# external CAN driver modules/variables go here
endif
include $(RIOTBASE)/Makefile.include