rusefillc 2022-08-11 10:54:54 -04:00
parent 94a333166f
commit 34bef1b3d2
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Release template (copy/paste this for new release):
- Password protection against tune access #4243
- Additional CAN messages #4401
- Option to invert VVT control (exhaust cams, etc) #4424
- Raw Battery gauge
### Fixed
- Lua CAN reception fixed for 11-bit IDs where the frame would be received, but a corrupt ID was passed to the handler function. #4321

View File

@ -559,6 +559,7 @@ static void updateRawSensors() {
engine->outputChannels.rawTps2Secondary = Sensor::getRaw(SensorType::Tps2Secondary);
engine->outputChannels.rawPpsPrimary = Sensor::getRaw(SensorType::AcceleratorPedalPrimary);
engine->outputChannels.rawPpsSecondary = Sensor::getRaw(SensorType::AcceleratorPedalSecondary);
engine->outputChannels.rawBattery = Sensor::getRaw(SensorType::BatteryVoltage);
engine->outputChannels.rawClt = Sensor::getRaw(SensorType::Clt);
engine->outputChannels.rawIat = Sensor::getRaw(SensorType::Iat);
engine->outputChannels.rawOilPressure = Sensor::getRaw(SensorType::OilPressure);