diff --git a/libraries/AP_EFI/AP_EFI_Serial_Hirth.h b/libraries/AP_EFI/AP_EFI_Serial_Hirth.h index ca2ccac3214b1..3ca06ff5178d3 100644 --- a/libraries/AP_EFI/AP_EFI_Serial_Hirth.h +++ b/libraries/AP_EFI/AP_EFI_Serial_Hirth.h @@ -47,10 +47,10 @@ class AP_EFI_Serial_Hirth: public AP_EFI_Backend { }; enum class Sensor_Status_Bitfield : uint8_t { - ENGINE_TEMP_SENSOR_OK = 1U<<0, // true if engine temperature sensor is OK - AIR_TEMP_SENSOR_OK = 1U<<1, // true if air temperature sensor is OK - AIR_PRESSURE_SENSOR_OK = 1U<<2, // true if intake air pressure sensor is OK - THROTTLE_SENSOR_OK = 1U<<3, // true if throttle sensor is OK + ENGINE_TEMP_SENSOR_OK = 1U<<1, // true if engine temperature sensor is OK + AIR_TEMP_SENSOR_OK = 1U<<2, // true if air temperature sensor is OK + AIR_PRESSURE_SENSOR_OK = 1U<<3, // true if intake air pressure sensor is OK + THROTTLE_SENSOR_OK = 1U<<4, // true if throttle sensor is OK }; private: