rusefi/firmware/config/engines/hyundai.cpp

354 lines
11 KiB
C++
Raw Normal View History

2021-10-11 09:37:24 -07:00
/*
* @file hyundai.cpp
*
2023-07-11 14:19:46 -07:00
https://rusefi.com/docs/pinouts/hellen/hellen-hyundai-pb-mt/
*
https://rusefi.com/docs/pinouts/hellen/hellen154hyundai/
2021-10-11 09:37:24 -07:00
* @date Oct 11, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
2022-07-17 22:56:58 -07:00
#include "pch.h"
2021-10-11 09:37:24 -07:00
#include "hyundai.h"
2023-04-20 13:52:49 -07:00
#include "proteus_meta.h"
2023-09-17 12:53:11 -07:00
#include "hellen_meta.h"
2023-06-10 09:46:39 -07:00
#include "defaults.h"
2023-07-07 20:53:34 -07:00
#include "lua_lib.h"
2021-10-11 11:22:35 -07:00
2023-06-09 17:59:47 -07:00
static void set201xHyundai() {
setPPSCalibration(0.73, 4.0, 0.34, 1.86);
// note how these numbers are very flipped m111 defaults?
setTPS1Calibration(98, 926, 891, 69);
2023-07-17 18:18:41 -07:00
setEtbPID(8.8944, 70.2307, 0.1855);
// Some sensible defaults for other options
setAlgorithm(LM_SPEED_DENSITY);
2023-06-09 17:59:47 -07:00
}
2023-03-20 14:49:02 -07:00
void setHyundaiPb() {
2023-07-12 08:34:25 -07:00
setInline4();
2023-04-28 18:01:08 -07:00
engineConfiguration->displacement = 1.6;
2023-04-19 17:58:26 -07:00
strcpy(engineConfiguration->engineMake, ENGINE_MAKE_Hyundai);
strcpy(engineConfiguration->engineCode, "Gamma");
2023-04-20 18:43:58 -07:00
2023-06-10 06:18:47 -07:00
engineConfiguration->trigger.type = trigger_type_e::TT_TOOTHED_WHEEL_60_2;
2023-04-20 18:43:58 -07:00
engineConfiguration->globalTriggerAngleOffset = 90;
2023-07-09 18:54:54 -07:00
engineConfiguration->etbIdleThrottleRange = 6.0;
engineConfiguration->totalGearsCount = 5;
engineConfiguration->gearRatio[0] = 12;
engineConfiguration->gearRatio[1] = 6;
engineConfiguration->gearRatio[2] = 4.4;
engineConfiguration->gearRatio[3] = 2.4;
engineConfiguration->gearRatio[4] = 1;
2023-07-05 18:28:17 -07:00
// ETB buzzing is annoying :(
engineConfiguration->disableEtbWhenEngineStopped = true;
2023-06-13 19:43:47 -07:00
engineConfiguration->afr.hwChannel = EFI_ADC_NONE;
engineConfiguration->enableAemXSeries = true;
2023-06-09 17:59:47 -07:00
set201xHyundai();
2023-06-10 09:46:39 -07:00
// Injectors flow 1214 cc/min at 100 bar pressure
engineConfiguration->injector.flow = 1214;
setGDIFueling();
2023-06-11 18:17:01 -07:00
engineConfiguration->injectionMode = IM_SEQUENTIAL;
engineConfiguration->crankingInjectionMode = IM_SEQUENTIAL;
2023-06-09 17:59:47 -07:00
engineConfiguration->map.sensor.type = MT_CUSTOM;
engineConfiguration->map.sensor.lowValue = 20;
engineConfiguration->mapLowValueVoltage = 0.79;
engineConfiguration->map.sensor.highValue = 101.3;
engineConfiguration->mapHighValueVoltage = 4;
2023-07-09 18:54:54 -07:00
engineConfiguration->mc33_hpfp_i_peak = 10;
2023-07-05 17:25:33 -07:00
engineConfiguration->mc33_hpfp_i_hold = 4;
engineConfiguration->vvtMode[0] = VVT_SINGLE_TOOTH;
engineConfiguration->vvtMode[1] = VVT_SINGLE_TOOTH;
2023-04-22 05:32:04 -07:00
2023-04-20 18:43:58 -07:00
engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS;
2023-04-24 21:36:13 -07:00
2023-06-09 17:36:39 -07:00
engineConfiguration->hpfpCamLobes = 4;
engineConfiguration->rethrowHardFault = true;
2023-06-09 17:36:39 -07:00
2023-04-24 21:36:13 -07:00
engineConfiguration->highPressureFuel.v1 = 0.5; /* volts */;
engineConfiguration->highPressureFuel.value1 = 0;
engineConfiguration->highPressureFuel.v2 = 4.5; /* volts */;
// page 98, Fuel System > Engine Control System > Rail Pressure Sensor (RPS) > Specifications
engineConfiguration->highPressureFuel.value2 = 20'000;
2023-09-17 12:53:11 -07:00
#if HW_HELLEN_4CHAN
engineConfiguration->highPressureFuel.hwChannel = H144_IN_O2S2;
engineConfiguration->hpfpValvePin = Gpio::H144_OUT_IO6; // E2
engineConfiguration->starterControlPin = Gpio::H144_OUT_PWM5; // F1
engineConfiguration->startStopButtonPin = Gpio::H144_IN_VSS; // C4
engineConfiguration->camInputs[0] = Gpio::H144_IN_D_4; // E6
#endif // HW_HELLEN_4CHAN
2023-06-08 09:26:02 -07:00
2023-06-08 09:45:39 -07:00
#if HW_PROTEUS
2023-09-17 12:53:11 -07:00
engineConfiguration->highPressureFuel.hwChannel = PROTEUS_IN_ANALOG_VOLT_4;
2023-06-12 16:33:26 -07:00
setCommonNTCSensor(&engineConfiguration->clt, PROTEUS_DEFAULT_AT_PULLUP);
setCommonNTCSensor(&engineConfiguration->iat, PROTEUS_DEFAULT_AT_PULLUP);
// engineConfiguration->acRelayPin = Gpio::PROTEUS_LS_6;
2023-07-18 12:18:28 -07:00
engineConfiguration->acSwitch = PROTEUS_DIGITAL_5;
2023-07-18 12:16:25 -07:00
engineConfiguration->fanPin = Gpio::PROTEUS_LS_5;
engineConfiguration->tachOutputPin = Gpio::PROTEUS_IGN_12;
engineConfiguration->hpfpValvePin = Gpio::PROTEUS_LS_6;
engineConfiguration->vvtPins[0] = Gpio::PROTEUS_LS_15; // intake
engineConfiguration->vvtPins[1] = Gpio::PROTEUS_LS_16; // exhaust
2023-09-14 07:34:30 -07:00
engineConfiguration->triggerInputPins[0] = PROTEUS_VR_1;
engineConfiguration->camInputs[0] = PROTEUS_DIGITAL_1;
engineConfiguration->camInputs[1] = PROTEUS_DIGITAL_2; // currently intake, TODO: flip!
setProteusEtbIO();
// something something input levels are not happy for digital input pin?
engineConfiguration->starterControlPin = Gpio::PROTEUS_LS_14;
engineConfiguration->startStopButtonPin = PROTEUS_IN_AV_6_DIGITAL;
2023-06-08 09:45:39 -07:00
#endif // HW_PROTEUS
2023-09-17 12:53:11 -07:00
engineConfiguration->startStopButtonMode = PI_DEFAULT;
2023-07-05 19:18:08 -07:00
2023-09-17 12:53:11 -07:00
#if HW_PROTEUS || HW_HELLEN_4CHAN
2023-07-09 17:38:07 -07:00
strncpy(config->luaScript, GET_BIT_RANGE_LSB TWO_BYTES_LSB PRINT_ARRAY SET_TWO_BYTES_LSB HYUNDAI_SUM_NIBBLES R"(
2023-07-05 19:18:08 -07:00
GDI4_BASE_ADDRESS = 0xBB20
2023-07-05 19:18:08 -07:00
GDI_CHANGE_ADDRESS = GDI4_BASE_ADDRESS + 0x10
GDI4_CAN_SET_TAG = 0x78
local data_set_settings = { GDI4_CAN_SET_TAG, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
FIXED_POINT = 128
2023-07-30 20:59:35 -07:00
setTickRate(100)
2023-07-05 19:18:08 -07:00
2023-07-05 21:15:16 -07:00
function onCanConfiguration3(bus, id, dlc, data)
-- print("Received configuration3 "..arrayToString(data))
pumpPeak = getTwoBytesLSB(data, 6, 1 / 128)
-- print("GDI4 says PumpPeakCurrent ".. pumpPeak)
setLuaGauge(1, pumpPeak)
end
canRxAdd(GDI4_BASE_ADDRESS + 3, onCanConfiguration3)
2023-07-07 20:53:34 -07:00
EMS_DCT11_128 = 0x80
EMS_DCT12_129 = 0x81
2023-07-30 20:59:35 -07:00
EMS_H12_399 = 0x18f
EMS6_608 = 0x260
EMS5_672 = 0x2a0
2023-07-07 20:53:34 -07:00
EMS11_790 = 0x316
2023-07-30 20:59:35 -07:00
EMS12_809 = 0x329
EMS9_898 = 0x382
2023-07-07 20:53:34 -07:00
EMS14_1349 = 0x545
2023-07-07 21:35:21 -07:00
counter = 0
2023-07-07 20:53:34 -07:00
payLoad128 = { 0x00, 0x17, 0x70, 0x0F, 0x1B, 0x2C, 0x1B, 0x75 }
payLoad129 = { 0x40, 0x84, 0x5F, 0x00, 0x00, 0x00, 0x00, 0x75 }
2023-07-30 21:37:47 -07:00
payLoad399 = {0x00, 0x30, 0x1d, 0x00, 0x00, 0x63, 0x00, 0x00}
payLoad608 = {0x05, 0x1d, 0x00, 0x30, 0x01, 0xa5, 0x7f, 0x31}
payLoad672 = {0xe0, 0x00, 0x5f, 0x98, 0x39, 0x12, 0x9e, 0x08}
payLoad809 = {0xd7, 0x7b, 0x7e, 0x0c, 0x11, 0x2c, 0x00, 0x10}
payLoad898 = {0x40, 0xfe, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x08}
2023-07-07 20:53:34 -07:00
payLoad1349 = { 0xCA, 0x16, 0x00, 0x8A, 0x75, 0xFF, 0x75, 0xFF }
2023-07-09 17:38:07 -07:00
speedSensor = Sensor.new("VehicleSpeed")
speedSensor : setTimeout(3000)
function onCluPacket(bus, id, dlc, data)
speedKph = getBitRange(data, 8, 9) * 0.5
print('onCAR_SPEED ' ..speedKph)
speedSensor : set(speedKph)
end
canRxAdd(1, 1264, onCluPacket)
2023-07-05 19:18:08 -07:00
function onTick()
2023-07-07 20:53:34 -07:00
local RPMread = math.floor(getSensor("RPM") * 4)
local RPMhi = RPMread >> 8
local RPMlo = RPMread & 0xff
payLoad128[3] = RPMlo
payLoad128[4] = RPMhi
counter = (counter + 1) % 16
2023-07-30 20:59:35 -07:00
check128 = hyundaiSumNibbles(payLoad128, counter)
2023-07-07 20:53:34 -07:00
payLoad128[8] = check128 * 16 + counter
txCan(1, EMS_DCT11_128, 0, payLoad128)
2023-07-30 20:59:35 -07:00
check129 = hyundaiSumNibbles(payLoad129, counter)
2023-07-07 20:53:34 -07:00
payLoad129[8] = check129 * 16 + counter
txCan(1, EMS_DCT12_129, 0, payLoad129)
canRPMpayload = { 0x05, 0x1B, RPMlo, RPMhi, 0x1B, 0x2C, 0x00, 0x7F }
txCan(1, EMS11_790, 0, canRPMpayload)
txCan(1, EMS14_1349, 0, payLoad1349)
2023-07-05 19:18:08 -07:00
2023-07-30 20:59:35 -07:00
txCan(1, EMS_H12_399, 0, payLoad399)
txCan(1, EMS6_608, 0, payLoad608)
txCan(1, EMS5_672, 0, payLoad672)
txCan(1, EMS12_809, 0, payLoad809)
txCan(1, EMS9_898, 0, payLoad898)
2023-07-05 19:18:08 -07:00
pumpPeakCurrent = getCalibration("mc33_hpfp_i_peak")
pumpHoldCurrent = getCalibration("mc33_hpfp_i_hold")
TholdOff = getCalibration("mc33_t_hold_off")
THoldDuration = getCalibration("mc33_t_hold_tot")
setTwoBytesLsb(data_set_settings, 1, TholdOff)
setTwoBytesLsb(data_set_settings, 3, THoldDuration)
setTwoBytesLsb(data_set_settings, 5, pumpPeakCurrent * FIXED_POINT)
print('Will be sending ' ..arrayToString(data_set_settings))
txCan(1, GDI_CHANGE_ADDRESS + 3, 1, data_set_settings)
setTwoBytesLsb(data_set_settings, 1, pumpHoldCurrent * FIXED_POINT)
2023-07-09 16:33:58 -07:00
setTwoBytesLsb(data_set_settings, 3, GDI4_BASE_ADDRESS)
2023-07-05 19:18:08 -07:00
print('Will be sending ' ..arrayToString(data_set_settings))
txCan(1, GDI_CHANGE_ADDRESS + 4, 1, data_set_settings)
end
)", efi::size(config->luaScript));
2023-07-07 20:53:34 -07:00
#endif // HW_PROTEUS
2023-07-05 19:18:08 -07:00
2023-03-20 14:49:02 -07:00
}
2022-01-05 10:49:38 -08:00
static void commonGenesisCoupe() {
2023-06-09 17:59:47 -07:00
set201xHyundai();
2023-07-17 18:18:41 -07:00
engineConfiguration->displayLogicLevelsInEngineSniffer = true;
engineConfiguration->enableSoftwareKnock = true;
engineConfiguration->canNbcType = CAN_BUS_GENESIS_COUPE;
engineConfiguration->injectorCompensationMode = ICM_FixedRailPressure;
engineConfiguration->cylindersCount = 4;
engineConfiguration->firingOrder = FO_1_3_4_2;
engineConfiguration->displacement = 1.998;
strcpy(engineConfiguration->engineMake, ENGINE_MAKE_Hyundai);
strcpy(engineConfiguration->engineCode, "Theta II");
engineConfiguration->globalTriggerAngleOffset = 90;
engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS; // IM_WASTED_SPARK
2022-01-05 10:49:38 -08:00
strncpy(config->luaScript, R"(
2023-04-21 07:55:33 -07:00
setTickRate(100)
t = Timer.new()
t : reset()
local data_0x329 = { 0x2C, 0x96, 0x80, 0x0E, 0x11, 0x2E, 0x00, 0x14 }
local slowCounter = 0
local slowRoll = 0
local slowRollTable = { 0x0C, 0x4F, 0x80, 0xE3 }
-- wakeup CAN messages
local data_0x382 = { 0x00, 0x3A, 0X44, 0x24, 0x00, 0x00, 0x00, 0x00 }
local data_0x0a0 = { 0x00, 0x68, 0x00, 0x00, 0x00, 0xFF, 0x01, 0x00 }
local data_0x0a1 = { 0x80, 0x80, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00 }
local data_0x18f = { 0xFA , 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
local data_0x545 = { 0xEC, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00 }
local data_0xA1 = { 0x80, 0x80, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00 }
local data_0xA0 = { 0x00, 0x68, 0x00, 0x00, 0x00, 0xFF, 0x01, 0x00 }
local data_0x260 = { 0x01, 0x1A, 0x1A, 0x10, 0x00, 0xAB, 0x93, 0x00 }
local data_0x2A0 = { 0x00, 0x00, 0x04, 0x00, 0x78, 0x05, 0x0D, 0x01 }
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
function onTick()
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
-- keep alives
txCan(1, 0x18f, 0, data_0x18f)
txCan(1, 0x545, 0, data_0x545)
-- more random can sends
txCan(1, 0x545, 0, data_0x545)
txCan(1, 0x382, 0, data_0x382)
txCan(1, 0xA0, 0, data_0xA0)
txCan(1, 0xA1, 0, data_0xA1)
txCan(1, 0x260, 0, data_0x260)
txCan(1, 0x2A0, 0, data_0x2A0)
local RPMread = math.floor(getSensor("RPM") + 0.5) * 4
local RPMhi = RPMread >> 8
local RPMlo = RPMread & 0xff
local CLTread = 50
if getSensor("CLT") then
CLTread = math.floor(getSensor("CLT") + 0.5)
else
CLTread = 50
end
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
local CLThi = CLTread
local CLTlo = CLTread * 256
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
canCLTpayloadNo = { 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
canCLTpayloadLo = { 0x00, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
canCLTpayloadHi = { 0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
canCLTpayloadHi2 = { 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
if slowCounter == 0 then
-- cycle through 0, 40, 80, c0
slowRoll = (slowRoll + 1) & 3
data_0x329[1] = slowRollTable[slowRoll + 1]
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
txCan(1, 0x329, 0, data_0x329)
slowCounter = 30
end
slowCounter = slowCounter -1
2022-01-05 10:49:38 -08:00
2023-04-21 07:55:33 -07:00
-- rpm fun stuff
if t : getElapsedSeconds() < 1.5 then
canRPMpayload = { 0x05, 0x1C, 0xFC, 0x7B, 0x1C, 0x2F, 0x00, 0x80 }
else
canRPMpayload = { 0x05, RPMlo, RPMhi, RPMhi, RPMlo, 0x2F, 0x00, 0x80 }
end
txCan(1, 0x316, 0, canRPMpayload)
if CLTread < 60 then
txCan(1, 0x608, 0, canCLTpayloadNo)
elseif CLTread >= 60 and CLTread < 85 then
txCan(1, 0x608, 0, canCLTpayloadLo)
elseif CLTread >= 85 and CLTread < 110 then
txCan(1, 0x608, 0, canCLTpayloadHi)
else
txCan(1, 0x608, 0, canCLTpayloadHi2)
end
2022-01-05 10:49:38 -08:00
end
)", efi::size(config->luaScript));
}
void setGenesisCoupeBK1() {
2022-01-05 10:49:38 -08:00
commonGenesisCoupe();
2021-10-11 11:22:35 -07:00
// 2010-2012 315cc at 43.5psi
// fuel system is fixed pressure 55psi
engineConfiguration->injector.flow = 354.19; // https://www.google.com/search?q=315*sqrt%2855%2F43.5%29
engineConfiguration->fuelReferencePressure = PSI2KPA(55);
}
void setGenesisCoupeBK2() {
2022-01-05 10:49:38 -08:00
commonGenesisCoupe();
2021-10-11 11:22:35 -07:00
// 2013+ 450cc at 43.5
// fuel system is fixed pressure 85psi
// flow rate P2 = flow rate P1 * sqrt(P2/P1)
engineConfiguration->injector.flow = 629.03; // https://www.google.com/search?q=450*sqrt%2885%2F43.5%29
engineConfiguration->fuelReferencePressure = PSI2KPA(85);
}