diff --git a/for_rusefi/wideband_can.h b/for_rusefi/wideband_can.h index 7ef6fb0..7d2043c 100644 --- a/for_rusefi/wideband_can.h +++ b/for_rusefi/wideband_can.h @@ -19,6 +19,7 @@ enum class Fault : uint8_t SensorDidntHeat = 3, SensorOverheat = 4, SensorUnderheat = 5, + SensorNoHeatSupply = 6, }; struct StandardData @@ -55,6 +56,8 @@ static const char* describeFault(Fault fault) { return "Sensor overheat"; case Fault::SensorUnderheat: return "Sensor underheat"; + case Fault::SensorNoHeatSupply: + return "Sensor no heat supply"; } return "Unknown"; diff --git a/for_rusefi/wideband_image_with_bl.bin b/for_rusefi/wideband_image_with_bl.bin index 06376e5..b504847 100644 Binary files a/for_rusefi/wideband_image_with_bl.bin and b/for_rusefi/wideband_image_with_bl.bin differ