diff --git a/firmware/console/binary/tunerstudio_outputs.h b/firmware/console/binary/tunerstudio_outputs.h index 129b222cc6..9550f58771 100644 --- a/firmware/console/binary/tunerstudio_outputs.h +++ b/firmware/console/binary/tunerstudio_outputs.h @@ -135,7 +135,7 @@ struct TunerStudioOutputChannels { scaled_percent iatCorrection; // 64 scaled_percent cltCorrection; // 66 scaled_percent baroCorrection; // 68 - uint16_t unused70; // 70 + uint16_t currentEnginePhase; // 70 // Wall model AE scaled_ms wallFuelAmount; // 72 diff --git a/firmware/console/status_loop.cpp b/firmware/console/status_loop.cpp index cb2683495a..62046284b4 100644 --- a/firmware/console/status_loop.cpp +++ b/firmware/console/status_loop.cpp @@ -884,6 +884,14 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_ } } +void updateCurrentEnginePhase(DECLARE_ENGINE_PARAMETER_SIGNATURE) { + if (auto phase = engine->triggerCentral.getCurrentEnginePhase(getTimeNowNt())) { + tsOutputChannels.currentEnginePhase = phase.Value - tdcPosition(); + } else { + tsOutputChannels.currentEnginePhase = 0; + } +} + void prepareTunerStudioOutputs(void) { // sensor state for EFI Analytics Tuner Studio updateTunerStudioState(&tsOutputChannels PASS_ENGINE_PARAMETER_SUFFIX); diff --git a/firmware/console/status_loop.h b/firmware/console/status_loop.h index c6553afc3e..b6ed120396 100644 --- a/firmware/console/status_loop.h +++ b/firmware/console/status_loop.h @@ -11,6 +11,7 @@ void updateDevConsoleState(void); void prepareTunerStudioOutputs(void); +void updateCurrentEnginePhase(DECLARE_ENGINE_PARAMETER_SIGNATURE); void startStatusThreads(void); void initStatusLoop(void); diff --git a/firmware/controllers/trigger/trigger_central.cpp b/firmware/controllers/trigger/trigger_central.cpp index aecf340892..0c400dc8b2 100644 --- a/firmware/controllers/trigger/trigger_central.cpp +++ b/firmware/controllers/trigger/trigger_central.cpp @@ -24,6 +24,7 @@ #include "tooth_logger.h" #include "map_averaging.h" #include "main_trigger_callback.h" +#include "status_loop.h" #if EFI_TUNER_STUDIO #include "tunerstudio.h" @@ -658,6 +659,10 @@ void TriggerCentral::handleShaftSignal(trigger_event_e signal, efitick_t timesta #endif mainTriggerCallback(triggerIndexForListeners, timestamp PASS_ENGINE_PARAMETER_SUFFIX); + +#if EFI_TUNER_STUDIO + updateCurrentEnginePhase(PASS_ENGINE_PARAMETER_SIGNATURE); +#endif } } diff --git a/firmware/tunerstudio/rusefi.input b/firmware/tunerstudio/rusefi.input index 62e8d428f5..a2c97966d7 100644 --- a/firmware/tunerstudio/rusefi.input +++ b/firmware/tunerstudio/rusefi.input @@ -426,6 +426,8 @@ enable2ndByteCanID = false rawTps1Secondary = scalar, U16, 300, "V",{1/@@PACK_MULT_VOLTAGE@@}, 0.0 rawTps2Primary = scalar, U16, 302, "V",{1/@@PACK_MULT_VOLTAGE@@}, 0.0 rawTps2Secondary = scalar, U16, 304, "V",{1/@@PACK_MULT_VOLTAGE@@}, 0.0 + + currentEnginePhase = scalar, U16, 70, "deg", 1, 0 ; ; see TunerStudioOutputChannels struct ; @@ -1031,6 +1033,7 @@ gaugeCategory = Sensors - Extra 2 speedToRpmRatioGauge = speedToRpmRatio, "speed2rpm", "", 0, 100, 0, 0, 100, 100, 4, 4 wastegatePosGauge = wastegatePositionSensor, @@GAUGE_NAME_WG_POSITION@@, "%", 0, 100, 0, 0, 100, 100, 1, 1 idlePosSensGauge = idlePositionSensor, @@GAUGE_NAME_IDLE_POSITION@@, "%", 0, 100, 0, 0, 100, 100, 1, 1 + currentEnginePhaseGauge = currentEnginePhase, "Engine Phase", "deg", 0, 720, 0, 0, 720, 720, 0, 0 gaugeCategory = ECU Status warningCounterGauge = warningCounter, @@GAUGE_NAME_WARNING_COUNT@@, "", 0, 100, 0, 0, 100, 100, 0, 0 @@ -1439,6 +1442,7 @@ gaugeCategory = DynoView entry = VssAcceleration, "Vss Accel", float, "%.3f" entry = flexPercent, @@GAUGE_NAME_FLEX@@, int, "%d" + entry = currentEnginePhase, "Engine Phase", int, "%d" [Menu]