mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 22:52:45 +01:00
5ed0bafc92
- Adapted build system and test checks for the native boards to include native64 - Added `native64` to the same tests as `native`
17 lines
449 B
Makefile
17 lines
449 B
Makefile
ifneq (,$(filter native native64,$(BOARD)))
|
|
CAN_DRIVER ?= PERIPH_CAN
|
|
endif
|
|
|
|
# define the CAN driver you want to use here
|
|
CAN_DRIVER ?= MCP2515
|
|
|
|
ifeq ($(CAN_DRIVER), PERIPH_CAN)
|
|
FEATURES_REQUIRED += periph_can
|
|
else ifeq ($(CAN_DRIVER), MCP2515)
|
|
USEMODULE += mcp2515
|
|
# Uncomment to enable MCP2515 reception filtering
|
|
# CFLAGS += "-DMCP2515_RECV_FILTER_EN=1"
|
|
else ifeq ($(CAN_DRIVER), CAN_ALT)
|
|
# other can modules can be defined here
|
|
endif
|