rusefi/firmware/config/boards/hellen/hellen72/board.mk

21 lines
639 B
Makefile
Raw Normal View History

# Combine the related files for a specific platform and MCU.
# Target ECU board design
BOARDCPPSRC = $(BOARD_DIR)/board_configuration.cpp
# Set this if you want a default engine type other than normal Hellen72
ifeq ($(VAR_DEF_ENGINE_TYPE),)
2023-06-18 08:05:44 -07:00
VAR_DEF_ENGINE_TYPE = -DDEFAULT_ENGINE_TYPE=engine_type_e::HELLEN_NB2
endif
2021-02-17 06:50:28 -08:00
DDEFS += -DEFI_MAIN_RELAY_CONTROL=TRUE
# Add them all together
DDEFS += -DFIRMWARE_ID=\"hellen72\" $(VAR_DEF_ENGINE_TYPE)
2021-04-20 19:07:09 -07:00
DDEFS += -DEFI_SOFTWARE_KNOCK=TRUE -DSTM32_ADC_USE_ADC3=TRUE
2022-02-09 19:46:13 -08:00
DDEFS += -DSHORT_BOARD_NAME=hellen72 -DSTATIC_BOARD_ID=STATIC_BOARD_ID_HELLEN_72
2022-02-09 20:12:10 -08:00
include $(BOARDS_DIR)/hellen/hellen-common176.mk