new sensor types

This commit is contained in:
Matthew Kennedy 2023-09-18 01:04:54 -07:00 committed by rusefillc
parent 2f05a1f2ae
commit bcc5647e27
1 changed files with 10 additions and 1 deletions

View File

@ -27,12 +27,17 @@ enum class SensorType : unsigned char {
Map, Map,
Maf, Maf,
OilPressure, // 6 AmbientTemperature,
OilPressure,
OilTemperature,
FuelPressureLow, // in kPa FuelPressureLow, // in kPa
FuelPressureHigh, // in kPa FuelPressureHigh, // in kPa
FuelPressureInjector, FuelPressureInjector,
FuelTemperature,
// This is the "resolved" position, potentially composited out of the following two // This is the "resolved" position, potentially composited out of the following two
Tps1, // 10 Tps1, // 10
// This is the first sensor // This is the first sensor
@ -90,6 +95,10 @@ enum class SensorType : unsigned char {
MapSlow2, MapSlow2,
MapFast2, MapFast2,
// Pressure sensor after compressor, before intercooler
CompressorDischargePressure,
CompressorDischargeTemperature,
// Pressure sensor before the throttle, after any turbo/etc // Pressure sensor before the throttle, after any turbo/etc
ThrottleInletPressure, ThrottleInletPressure,