22 lines
549 B
Makefile
22 lines
549 B
Makefile
# Combine the related files for a specific platform and MCU.
|
|
|
|
# Target ECU board design
|
|
BOARDCPPSRC = $(BOARDS_DIR)/hellen/alphax-2chan/board_configuration.cpp
|
|
BOARDINC = $(BOARDS_DIR)/hellen/alphax-2chan
|
|
|
|
DDEFS += -DEFI_MAIN_RELAY_CONTROL=TRUE
|
|
|
|
|
|
|
|
# Add them all together
|
|
DDEFS += -DFIRMWARE_ID=\"AlphaX-2chan\"
|
|
DDEFS += -DEFI_SOFTWARE_KNOCK=TRUE -DSTM32_ADC_USE_ADC3=TRUE
|
|
DDEFS += -DHAL_TRIGGER_USE_PAL=TRUE
|
|
|
|
include $(BOARDS_DIR)/hellen/hellen-common144.mk
|
|
|
|
DDEFS += $(PRIMARY_COMMUNICATION_PORT_USART2)
|
|
|
|
DDEFS += -DSHORT_BOARD_NAME=alphax-2chan
|
|
|