EGT in gppwm channel
This commit is contained in:
parent
b7ab2be38a
commit
a736d888e3
|
@ -74,6 +74,10 @@ expected<float> readGppwmChannel(gppwm_channel_e channel) {
|
|||
#endif // EFI_VEHICLE_SPEED
|
||||
case GPPWM_BaroPressure:
|
||||
return Sensor::get(SensorType::BarometricPressure);
|
||||
case GPPWM_Egt1:
|
||||
return Sensor::get(SensorType::EGT1);
|
||||
case GPPWM_Egt2:
|
||||
return Sensor::get(SensorType::EGT2);
|
||||
}
|
||||
|
||||
return unexpected;
|
||||
|
|
|
@ -611,6 +611,8 @@ typedef enum __attribute__ ((__packed__)) {
|
|||
GPPWM_Rpm = 24,
|
||||
GPPWM_DetectedGear = 25,
|
||||
GPPWM_BaroPressure = 26,
|
||||
GPPWM_Egt1 = 27,
|
||||
GPPWM_Egt2 = 28,
|
||||
} gppwm_channel_e;
|
||||
|
||||
typedef enum __attribute__ ((__packed__)) {
|
||||
|
|
|
@ -358,7 +358,7 @@ custom pin_output_mode_e 1 bits, U08, @OFFSET@, [0:1], @@pin_output_mode_e_enum@
|
|||
#define pin_input_mode_e_enum "DEFAULT", "PULLUP", "PULLDOWN"
|
||||
custom pin_input_mode_e 1 bits, U08, @OFFSET@, [0:1], @@pin_input_mode_e_enum@@
|
||||
|
||||
#define gppwm_channel_e_enum "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure"
|
||||
#define gppwm_channel_e_enum "Zero", "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "Aux Temp 1", "Aux Temp 2", "Accel Pedal", "Battery Voltage", "VVT 1 I", "VVT 1 E", "VVT 2 I", "VVT 2 E", "Ethanol (Flex) %", "Aux Linear 1", "Aux Linear 2", "GPPWM Output 1", "GPPWM Output 2", "GPPWM Output 3", "GPPWM Output 4", "Lua Gauge 1", "Lua Gauge 2", "RPM", "Gear (detected)", "Baro pressure", "EGT 1", "EGT 2"
|
||||
custom gppwm_channel_e 1 bits, U08, @OFFSET@, [0:4], @@gppwm_channel_e_enum@@
|
||||
|
||||
struct gppwm_channel
|
||||
|
|
Loading…
Reference in New Issue