scale mk60e5 vss properly

This commit is contained in:
Matthew Kennedy 2023-11-27 21:03:33 -08:00 committed by rusefi
parent 0e90a5c9c8
commit 3216c5c97b
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ float processBMW_e90(const CANRxFrame& frame) {
uint8_t low = frame.data8[0];
uint8_t high = frame.data8[1] & 0x0F;
return (low | high << 8);
return 0.1f * (low | (high << 8));
}
float processW202(const CANRxFrame& frame) {