This commit is contained in:
parent
94a333166f
commit
34bef1b3d2
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue