correct CAN

This commit is contained in:
Matthew Kennedy 2020-11-28 02:56:34 -08:00
parent 95ba8de396
commit 95d14ad170
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ void SendCanData(float lambda, uint16_t measuredResistance)
{
CanTxTyped<StandardDataFrame> frame(0x130);
frame.get().lambda = lambda / 1000.0f;
frame.get().lambda = lambda * 10000;
frame.get().measuredResistance = measuredResistance;
}