mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 06:23:53 +01:00
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
|