blend result returns blend parameter value for TS UI

This commit is contained in:
Andrey 2023-04-30 02:01:00 -04:00
parent 6656c2ae88
commit a2eef06a7e
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ void setFlatInjectorLag(float value) {
BlendResult calculateBlend(blend_table_s& cfg, float rpm, float load) {
// If set to 0, skip the math as its disabled
if (cfg.blendParameter == GPPWM_Zero) {
return { 0, 0 };
return { 0, 0, 0 };
}
auto value = readGppwmChannel(cfg.blendParameter);