Fuel Level Sensor should have a RAW option fix #6979

only:uaefi
This commit is contained in:
rusefillc 2024-12-20 18:02:35 -05:00
parent e0250c6ce9
commit a865d04278
4 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,7 @@ Release template (copy/paste this for new release):
- Flex Fuel sensor settings should be under "Fuel sensor" #7097
- GM SENT fuel pressure sensor #6997
- ETB calibration automatically enables ETB if needed #7197
- Fuel Level Sensor should have a RAW option #6979
### Fixed
- Critical error when using big values on Boost Control Open Loop with Y axis as MAP #7093

View File

@ -187,6 +187,7 @@ int16_t rpmAcceleration;dRPM;"RPM acceleration/Rate of Change/ROC",1, 0, 0, 5, 2
int16_t autoscale rawIat;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
int16_t autoscale rawOilPressure;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
int16_t autoscale rawAcPressure;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
int16_t autoscale rawFuelLevel;;"V",{1/@@PACK_MULT_VOLTAGE@@}, 0, 0, 5, 3
uint8_t fuelClosedLoopBinIdx;;"", 1, 0, 0, 0, 0

View File

@ -481,6 +481,7 @@ static void updateRawSensors() {
engine->outputChannels.rawAuxTemp2 = Sensor::getRaw(SensorType::AuxTemp2);
engine->outputChannels.rawAmbientTemp = Sensor::getRaw(SensorType::AmbientTemperature);
engine->outputChannels.rawOilPressure = Sensor::getRaw(SensorType::OilPressure);
engine->outputChannels.rawFuelLevel = Sensor::getRaw(SensorType::FuelLevel);
engine->outputChannels.rawAcPressure = Sensor::getRaw(SensorType::AcPressure);
engine->outputChannels.rawLowFuelPressure = Sensor::getRaw(SensorType::FuelPressureLow);
engine->outputChannels.rawHighFuelPressure = Sensor::getRaw(SensorType::FuelPressureHigh);

View File

@ -1730,6 +1730,7 @@ gaugeCategory = Sensors - Raw
rawAuxTemp2Gauge = rawAuxTemp2 , "Raw Aux Temp2", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawAmbientTempGauge = rawAmbientTemp , "Raw Ambient Temp", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawOilPressureGauge = rawOilPressure, "Raw Oil Pressure", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawFuelLevelGauge = rawFuelLevel, "Raw Fuel Level", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawAcPressureGauge = rawAcPressure, "Raw A/C Pressure", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawIdlePositionSensorGauge = rawIdlePositionSensor, "Raw Idle Position", "V", 0, 5, 0, 0, 5, 5, 3, 0
rawWastegatePositionGauge = rawWastegatePosition,"Raw Wastegate Position","V", 0, 5, 0, 0, 5, 5, 3, 0