This commit is contained in:
James 2024-04-25 22:07:02 +01:00
parent 939df496f8
commit 95b27ba0c0

View File

@ -283,6 +283,8 @@ bool processBasicInfo(byte *data, unsigned int dataLen){
Serial.printf("Balance Code High: 0x%x\r\n", BalanceCodeHigh);
Serial.printf("Mosfet Status: 0x%x\r\n", MosfetStatus);
gotBasicInfo=true;
return true;
}
@ -317,6 +319,8 @@ bool processCellInfo(byte *data, unsigned int dataLen)
Serial.printf("Difference cell volt: %f\r\n", (float)_cellMax - _cellMin / 1000);
Serial.printf("Average cell volt: %f\r\n", (float)_cellSum / NumOfCells / 1000);
gotCellInfo=true;
return true;
}