This commit is contained in:
rusefillc 2021-10-11 12:37:24 -04:00
parent 1d9b119aa1
commit 2a87208380
6 changed files with 22 additions and 3 deletions

View File

@ -6,7 +6,7 @@ BOARDINC = $(BOARDS_DIR)/hellen/hellen154hyundai
# Set this if you want a default engine type other than normal hellen121nissan
ifeq ($(DEFAULT_ENGINE_TYPE),)
DEFAULT_ENGINE_TYPE = -DDEFAULT_ENGINE_TYPE=HELLEN_154_HYUNDAI
DEFAULT_ENGINE_TYPE = -DDEFAULT_ENGINE_TYPE=HELLEN_154_HYUNDAI_COUPE_BK2
endif
# 144 package MCU

View File

@ -22,6 +22,7 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
$(PROJECT_DIR)/config/engines/honda_accord.cpp \
$(PROJECT_DIR)/config/engines/honda_600.cpp \
$(PROJECT_DIR)/config/engines/honda_k_dbc.cpp \
$(PROJECT_DIR)/config/engines/hyundai.cpp \
$(PROJECT_DIR)/config/engines/subaru.cpp \
$(PROJECT_DIR)/config/engines/GY6_139QMB.cpp \
$(PROJECT_DIR)/config/engines/mazda_626.cpp \

View File

@ -0,0 +1,8 @@
/*
* @file hyundai.cpp
*
* @date Oct 11, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
#include "hyundai.h"

View File

@ -0,0 +1,10 @@
/*
* @file hyundai.h
*
* @date Oct 11, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
#pragma once
#include "engine_configuration.h"

View File

@ -988,7 +988,8 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
case HELLEN_88_BMW:
case HELLEN_134_BMW:
case HELLEN_154_VAG:
case HELLEN_154_HYUNDAI:
case HELLEN_154_HYUNDAI_COUPE_BK1:
case HELLEN_154_HYUNDAI_COUPE_BK2:
break;
case HELLEN_NA6:
setHellenNA6(PASS_CONFIG_PARAMETER_SIGNATURE);

View File

@ -534,7 +534,6 @@ end_struct
#define ET_HELLEN_NA94 80
#define ET_HELLEN_121_VAG_8_CYL 81
#define ET_HELLEN_154_HYUNDAI 82
#define ET_HELLEN_154_HYUNDAI_COUPE_BK1 82
#define ET_HELLEN_NB1 83
#define ET_HELLEN_121_NISSAN_4_CYL 84