mirror of https://github.com/rusefi/wideband.git
hand merge
This commit is contained in:
parent
e99c902e0f
commit
00b9bf9d35
|
@ -19,6 +19,7 @@ enum class Fault : uint8_t
|
||||||
SensorDidntHeat = 3,
|
SensorDidntHeat = 3,
|
||||||
SensorOverheat = 4,
|
SensorOverheat = 4,
|
||||||
SensorUnderheat = 5,
|
SensorUnderheat = 5,
|
||||||
|
SensorNoHeatSupply = 6,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct StandardData
|
struct StandardData
|
||||||
|
@ -55,6 +56,8 @@ static const char* describeFault(Fault fault) {
|
||||||
return "Sensor overheat";
|
return "Sensor overheat";
|
||||||
case Fault::SensorUnderheat:
|
case Fault::SensorUnderheat:
|
||||||
return "Sensor underheat";
|
return "Sensor underheat";
|
||||||
|
case Fault::SensorNoHeatSupply:
|
||||||
|
return "Sensor no heat supply";
|
||||||
}
|
}
|
||||||
|
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue