File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ static void UartThread(void*)
3939 float lambda = GetLambda (ch);
4040 int lambdaIntPart = lambda;
4141 int lambdaThousandths = (lambda - lambdaIntPart) * 1000 ;
42- int batteryVoltageMv = GetSampler (ch).GetInternalHeaterVoltage () * 1000 ;
42+ int heaterVoltageMv = GetSampler (ch).GetInternalHeaterVoltage () * 1000 ;
4343 int duty = GetHeaterDuty (ch) * 100 ;
4444
4545 size_t writeCount = chsnprintf (printBuffer, sizeof (printBuffer),
@@ -51,7 +51,7 @@ static void UartThread(void*)
5151 (int )GetSampler (ch).GetSensorInternalResistance (),
5252 (int )GetSampler (ch).GetSensorTemperature (),
5353 (int )(GetSampler (ch).GetPumpNominalCurrent () * 1000 ),
54- batteryVoltageMv ,
54+ heaterVoltageMv ,
5555 describeHeaterState (GetHeaterState (ch)), duty,
5656 describeFault (GetCurrentFault (ch)));
5757 chnWrite (&SD1, (const uint8_t *)printBuffer, writeCount);
You can’t perform that action at this time.
0 commit comments