Error in can_dash.cpp fix #4786

This commit is contained in:
rusefillc 2022-11-15 15:05:01 -05:00
parent 645b244d97
commit 2bc3b7cea5
1 changed files with 1 additions and 1 deletions

View File

@ -718,7 +718,7 @@ void canDashboardHaltech(CanCycle cycle) {
{
CanTxMessage msg(CanCategory::NBC, 0x368, 8);
/* Wideband Sensor 1 */
tmp = (uint16_t)(Sensor::getOrZero(SensorType::Lambda1)) * 1000;
tmp = (uint16_t)(Sensor::getOrZero(SensorType::Lambda1) * 1000);
msg[0] = (tmp >> 8);
msg[1] = (tmp & 0x00ff);
/* Wideband Sensor 2 */