mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
e2fa5bcb7c
This makes tests/candev use periph_can by default instead of old native specific driver.
18 lines
316 B
Makefile
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
|