diff --git a/firmware/controllers/algo/engine_types.h b/firmware/controllers/algo/engine_types.h index decd45b97b..7f9ed7f95c 100644 --- a/firmware/controllers/algo/engine_types.h +++ b/firmware/controllers/algo/engine_types.h @@ -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, diff --git a/firmware/controllers/trigger/decoders/trigger_structure.cpp b/firmware/controllers/trigger/decoders/trigger_structure.cpp index ca51abb109..c3a9eabf06 100644 --- a/firmware/controllers/trigger/decoders/trigger_structure.cpp +++ b/firmware/controllers/trigger/decoders/trigger_structure.cpp @@ -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;