fome-fw/firmware/config/boards/hellen/hellen128/board.mk

28 lines
772 B
Makefile
Raw Normal View History

# Combine the related files for a specific platform and MCU.
# Target ECU board design
BOARDCPPSRC = $(BOARDS_DIR)/hellen/hellen128/board_configuration.cpp
BOARDINC = $(BOARDS_DIR)/hellen/hellen128
# Set this if you want a default engine type other than normal hellen128
ifeq ($(DEFAULT_ENGINE_TYPE),)
2021-09-17 21:02:56 -07:00
DEFAULT_ENGINE_TYPE = -DDEFAULT_ENGINE_TYPE=HELLEN_128_MERCEDES_4_CYL
endif
DDEFS += -DEFI_MAIN_RELAY_CONTROL=TRUE
# Disable serial ports on this board as UART3 causes a DMA conflict with the SD card
2022-02-09 19:52:46 -08:00
DDEFS += -DTS_NO_PRIMARY=1
# Add them all together
2022-02-12 09:35:00 -08:00
DDEFS += -DFIRMWARE_ID=\"hellen128\" $(DEFAULT_ENGINE_TYPE)
DDEFS += -DEFI_SOFTWARE_KNOCK=TRUE -DSTM32_ADC_USE_ADC3=TRUE
2022-02-09 19:47:54 -08:00
DDEFS += -DHAL_TRIGGER_USE_PAL=TRUE
2022-02-09 19:46:13 -08:00
2022-02-09 20:12:10 -08:00
include $(BOARDS_DIR)/hellen/hellen-common176.mk