diff --git a/firmware/console/status_loop.cpp b/firmware/console/status_loop.cpp index d4fd9f1ff7..af5513a28b 100644 --- a/firmware/console/status_loop.cpp +++ b/firmware/console/status_loop.cpp @@ -804,10 +804,10 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_ tsOutputChannels->debugIntField2 = engine->triggerCentral.getHwEventCounter((int)SHAFT_SECONDARY_FALLING); // no one uses shaft so far tsOutputChannels->debugIntField3 = engine->triggerCentral.getHwEventCounter((int)SHAFT_3RD_FALLING); #if EFI_PROD_CODE && HAL_USE_ICU == TRUE - tsOutputChannels->debugIntField3 = icuRisingCallbackCounter + icuFallingCallbackCounter; + tsOutputChannels->debugFloatField3 = icuRisingCallbackCounter + icuFallingCallbackCounter; #endif /* EFI_PROD_CODE */ - tsOutputChannels->debugIntField4 = engine->triggerCentral.vvtEventRiseCounter[0]; - tsOutputChannels->debugIntField5 = engine->triggerCentral.vvtEventFallCounter[0]; + tsOutputChannels->debugFloatField4 = engine->triggerCentral.vvtEventRiseCounter[0]; + tsOutputChannels->debugFloatField5 = engine->triggerCentral.vvtEventFallCounter[0]; tsOutputChannels->debugFloatField1 = engine->triggerCentral.getHwEventCounter((int)SHAFT_PRIMARY_RISING); tsOutputChannels->debugFloatField2 = engine->triggerCentral.getHwEventCounter((int)SHAFT_SECONDARY_RISING);