Index: firmware/App/Modes/Dialysis.c =================================================================== diff -u -r03c434e902b640c4093cfc96ceaeb93940c15340 -r4f026c2e983dcb657a5c980f3572c812b9782ae6 --- firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision 03c434e902b640c4093cfc96ceaeb93940c15340) +++ firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision 4f026c2e983dcb657a5c980f3572c812b9782ae6) @@ -1318,7 +1318,7 @@ // TODO remove this debug output // Send a comma delimited debug message with drift data U08 tempCharBuffer[ 64 ]; - sprintf( tempCharBuffer, "LoadCellOldDrift,%3.2f,LoadCellNewDrift,%3.2f", loadCellPreviousDrift, loadCellCurrentDrift ); + sprintf( tempCharBuffer, "LoadCellOldDrift,%3.3f,LoadCellNewDrift,%3.3f,Diff,%3.3f", loadCellPreviousDrift, loadCellCurrentDrift, driftDiff ); broadcastData( MSG_ID_HD_DEBUG_EVENT, COMM_BUFFER_OUT_CAN_HD_BROADCAST, tempCharBuffer, strlen( tempCharBuffer ) ); }