From eda6435b18b01f1ce9de123a2407a93a75d3fc10 Mon Sep 17 00:00:00 2001 From: rusefi Date: Fri, 29 Sep 2023 21:18:19 -0400 Subject: [PATCH] better enum name --- firmware/controllers/algo/engine_types.h | 2 +- firmware/controllers/trigger/decoders/trigger_structure.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;