better enum name

This commit is contained in:
rusefi 2023-09-29 21:18:19 -04:00
parent 747d10cd0a
commit eda6435b18
2 changed files with 2 additions and 2 deletions

View File

@ -341,7 +341,7 @@ enum class trigger_type_e : uint32_t {
// * only the 4 tooth signal, without the 360 signal
// * 8,2,2,2 Nissan pattern
TT_NISSAN_SR20VE = 24,
TT_2JZ_3_34 = 25,
TT_2JZ_3_34_SIMULATION_ONLY = 25,
TT_ROVER_K = 26,
// GM 24x with 5/10 degree gaps
TT_GM_24x = 27,

View File

@ -697,7 +697,7 @@ void TriggerWaveform::initializeTriggerWaveform(operation_mode_e triggerOperatio
initialize36_2_2_2(this);
break;
case trigger_type_e::TT_2JZ_3_34:
case trigger_type_e::TT_2JZ_3_34_SIMULATION_ONLY:
initialize2jzGE3_34_simulation_shape(this);
break;