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*)
39
39
float lambda = GetLambda (ch);
40
40
int lambdaIntPart = lambda;
41
41
int lambdaThousandths = (lambda - lambdaIntPart) * 1000 ;
42
- int batteryVoltageMv = GetSampler (ch).GetInternalHeaterVoltage () * 1000 ;
42
+ int heaterVoltageMv = GetSampler (ch).GetInternalHeaterVoltage () * 1000 ;
43
43
int duty = GetHeaterDuty (ch) * 100 ;
44
44
45
45
size_t writeCount = chsnprintf (printBuffer, sizeof (printBuffer),
@@ -51,7 +51,7 @@ static void UartThread(void*)
51
51
(int )GetSampler (ch).GetSensorInternalResistance (),
52
52
(int )GetSampler (ch).GetSensorTemperature (),
53
53
(int )(GetSampler (ch).GetPumpNominalCurrent () * 1000 ),
54
- batteryVoltageMv ,
54
+ heaterVoltageMv ,
55
55
describeHeaterState (GetHeaterState (ch)), duty,
56
56
describeFault (GetCurrentFault (ch)));
57
57
chnWrite (&SD1, (const uint8_t *)printBuffer, writeCount);
You can’t perform that action at this time.
0 commit comments