andreika-git 2024-02-01 14:08:27 +02:00 committed by rusefillc
parent d76e8edad2
commit 35c9e07587
2 changed files with 6 additions and 2 deletions

View File

@ -3,8 +3,10 @@
# Combine the related files for a specific platform and MCU.
# Target ECU board design
BOARDCPPSRC += $(BOARDS_DIR)/hellen/hellen_common.cpp \
$(BOARDS_DIR)/hellen/hellen_board_id.cpp
BOARDCPPSRC += $(BOARDS_DIR)/hellen/hellen_common.cpp
ifneq ($(USE_OPENBLT),yes)
BOARDCPPSRC += $(BOARDS_DIR)/hellen/hellen_board_id.cpp
endif
BOARDINC += $(BOARDS_DIR)/hellen

View File

@ -80,5 +80,7 @@ void configureHellenCanTerminator() {
}
void detectHellenBoardType() {
#if ! EFI_USE_OPENBLT
engine->engineState.hellenBoardId = hackHellenBoardId(detectHellenBoardId());
#endif /* EFI_USE_OPENBLT */
}