Revert "debug channels cleanup"

This reverts commit c99a5890a1.
This commit is contained in:
Matthew Kennedy 2023-09-13 15:40:19 -07:00
parent c99a5890a1
commit 900bc092de
1 changed files with 9 additions and 1 deletions

View File

@ -44,7 +44,15 @@ void DynoView::update(vssSrc src) {
//updating here would display acceleration = 0 at constant speed
updateAcceleration(deltaTime, deltaSpeed);
#if EFI_TUNER_STUDIO
if (engineConfiguration->debugMode == DBG_LOGIC_ANALYZER) {
engine->outputChannels.debugIntField1 = deltaTime;
engine->outputChannels.debugFloatField1 = vss;
engine->outputChannels.debugFloatField2 = speed;
engine->outputChannels.debugFloatField3 = deltaSpeed;
engine->outputChannels.debugFloatField4 = acceleration;
}
#endif /* EFI_TUNER_STUDIO */
updateHP();
} else {