Nissan VVT trigger decoder #2887
This commit is contained in:
parent
ba8b8a2e8d
commit
36165bed44
|
@ -100,8 +100,10 @@ trigger_type_e getVvtTriggerType(vvt_mode_e vvtMode) {
|
||||||
return TT_FORD_ST170;
|
return TT_FORD_ST170;
|
||||||
case VVT_BARRA_3_PLUS_1:
|
case VVT_BARRA_3_PLUS_1:
|
||||||
return TT_VVT_BARRA_3_PLUS_1;
|
return TT_VVT_BARRA_3_PLUS_1;
|
||||||
|
case VVT_NISSAN_VQ:
|
||||||
|
return TT_VVT_NISSAN_VQ;
|
||||||
default:
|
default:
|
||||||
return TT_ONE;
|
firmwareError(OBD_PCM_Processor_Fault, "getVvtTriggerType for %s", getVvt_mode_e(vvtMode));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,13 +87,12 @@ angle_t TriggerCentral::getVVTPosition(uint8_t bankIndex, uint8_t camIndex) {
|
||||||
|
|
||||||
#define miataNbIndex (0)
|
#define miataNbIndex (0)
|
||||||
|
|
||||||
// todo: should we hard-code the list of 'not real decoder' modes instead of adding to list of 'real decoders'? these days we only add 'real decode' modes
|
|
||||||
static bool vvtWithRealDecoder(vvt_mode_e vvtMode) {
|
static bool vvtWithRealDecoder(vvt_mode_e vvtMode) {
|
||||||
return vvtMode == VVT_MIATA_NB2
|
// todo: why does VVT_2JZ not use real decoder?
|
||||||
|| vvtMode == VVT_BOSCH_QUICK_START
|
return vvtMode != VVT_INACTIVE
|
||||||
|| vvtMode == VVT_FORD_ST170
|
&& vvtMode != VVT_2JZ
|
||||||
|| vvtMode == VVT_4_1
|
&& vvtMode != VVT_SECOND_HALF
|
||||||
|| vvtMode == VVT_BARRA_3_PLUS_1;
|
&& vvtMode != VVT_FIRST_HALF;
|
||||||
}
|
}
|
||||||
|
|
||||||
void hwHandleVvtCamSignal(trigger_value_e front, efitick_t nowNt, int index DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
void hwHandleVvtCamSignal(trigger_value_e front, efitick_t nowNt, int index DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||||
|
@ -178,8 +177,8 @@ void hwHandleVvtCamSignal(trigger_value_e front, efitick_t nowNt, int index DECL
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ENGINE(triggerCentral).vvtState[bankIndex][camIndex].decodeTriggerEvent(
|
tc->vvtState[bankIndex][camIndex].decodeTriggerEvent(
|
||||||
ENGINE(triggerCentral).vvtShape[camIndex],
|
tc->vvtShape[camIndex],
|
||||||
nullptr,
|
nullptr,
|
||||||
nullptr,
|
nullptr,
|
||||||
engine->vvtTriggerConfiguration[camIndex],
|
engine->vvtTriggerConfiguration[camIndex],
|
||||||
|
@ -217,7 +216,7 @@ void hwHandleVvtCamSignal(trigger_value_e front, efitick_t nowNt, int index DECL
|
||||||
case VVT_BOSCH_QUICK_START:
|
case VVT_BOSCH_QUICK_START:
|
||||||
case VVT_BARRA_3_PLUS_1:
|
case VVT_BARRA_3_PLUS_1:
|
||||||
{
|
{
|
||||||
if (engine->triggerCentral.vvtState[bankIndex][camIndex].currentCycle.current_index != 0) {
|
if (tc->vvtState[bankIndex][camIndex].currentCycle.current_index != 0) {
|
||||||
// this is not sync tooth - exiting
|
// this is not sync tooth - exiting
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue