client: Add AMB objects for Vehicle Status
[profile/ivi/automotive-message-broker.git] / lib / client / libamb-objects.h
index c6377ac..a56d6e7 100644 (file)
@@ -25,16 +25,88 @@ extern "C" {
 
 #include "libamb-util.h"
 
-enum GearboxPositionDisplay{
+enum GearboxPositionDisplay {
        PARKING = (1<<3) | (1<<1), // 10, 0x0A
        DRIVE,                     // 11, 0x0B
        NEUTRAL,
        REVERSE,
 };
 
-CAN_OBJECT(VehicleOdometer, guint32, NULL);
-CAN_OBJECT(VehicleSpeed, guint16, Speed);
+enum DriveMode {
+       NORMAL = (1<<3) | (1<<1),       // 10, 0x0A
+       ECO = (1<<3) | (1<<2),          // 12, 0x0C
+       SPORT,                          // 13, 0x0D
+};
+
+/**
+ * Gear Information
+ * CANID: 257 (0x101)
+ */
 CAN_OBJECT(GearboxPositionDisplay, guchar, NULL);
+CAN_OBJECT(GearboxPosition, guchar, NULL);
+CAN_OBJECT(DriveMode, guchar, NULL);
+
+/**
+ * Vehicle Speed & Odometer
+ * CANID: 258 (0x102)
+ */
+CAN_OBJECT(VehicleOdometer,    guint32, NULL);
+CAN_OBJECT(VehicleSpeed,       guint16, Speed);
+
+/**
+ * Engine Information
+ * CANID: 259 (0x103)
+ */
+CAN_OBJECT(EngineRPM,          guint16, NULL);
+CAN_OBJECT(WarterTemperature,  guint16, NULL);
+CAN_OBJECT(FuelGage,           guchar,  NULL);
+
+/**
+ * TPMS Tire Air pressure
+ * CANID: 260 (0x104)
+ */
+CAN_OBJECT(TPMS_FL, guchar, NULL);
+CAN_OBJECT(TPMS_FR, guchar, NULL);
+CAN_OBJECT(TPMS_RL, guchar, NULL);
+CAN_OBJECT(TPMS_RR, guchar, NULL);
+
+/**
+ * Warning Message & Status
+ * CANID: 518 (0x206)
+ */
+CAN_OBJECT(WarningSafetybelts,         gboolean, NULL);
+CAN_OBJECT(WarningAirbag,      gboolean, NULL);
+CAN_OBJECT(CheckCharging,      gboolean, NULL);
+CAN_OBJECT(WarningLowOilLevel,         gboolean, NULL);
+CAN_OBJECT(CheckPowerSteering,         gboolean, NULL);
+CAN_OBJECT(WarningBrake,       gboolean, NULL);
+CAN_OBJECT(WarningEBD,                 gboolean, NULL);
+CAN_OBJECT(CheckEnging,        gboolean, NULL);
+CAN_OBJECT(EmergencyFlasher,   gboolean, NULL);
+CAN_OBJECT(FuelLeveltooLow,    gboolean, NULL);
+CAN_OBJECT(WarningTPM,                 gboolean, NULL);
+CAN_OBJECT(LowWasher,          gboolean, NULL);
+CAN_OBJECT(SystemESC,          gboolean, NULL);
+CAN_OBJECT(SystemESCOff,       gboolean, NULL);
+CAN_OBJECT(WarningABS,                 gboolean, NULL);
+CAN_OBJECT(StsDoorOpen,        gboolean, NULL);
+CAN_OBJECT(StsTrunkOpen,       gboolean, NULL);
+CAN_OBJECT(WarningImmobilizer,         gboolean, NULL);
+CAN_OBJECT(LampRearFogLights,  gboolean, NULL);
+CAN_OBJECT(LampHazardLight,    gboolean, NULL);
+CAN_OBJECT(LampFrontFog,       gboolean, NULL);
+CAN_OBJECT(LampTailLight,      gboolean, NULL);
+CAN_OBJECT(LampHighBeamAuto,   gboolean, NULL);
+CAN_OBJECT(LampHighBeam,       gboolean, NULL);
+CAN_OBJECT(LampCruiseCnt,      gboolean, NULL);
+CAN_OBJECT(LampCruiseCntSet,   gboolean, NULL);
+CAN_OBJECT(LampDoorOpenF_L,    gboolean, NULL);
+CAN_OBJECT(LampDoorOpenF_R,    gboolean, NULL);
+CAN_OBJECT(LampDoorOpenR_R,    gboolean, NULL);
+CAN_OBJECT(LampDoorOpenR_L,    gboolean, NULL);
+CAN_OBJECT(LampDoorOpenBonnet,         gboolean, NULL);
+CAN_OBJECT(LampDoorOpenTrunk,  gboolean, NULL);
+CAN_OBJECT(WarningParkingBreak, gboolean, NULL);
 
 #ifdef __cplusplus
 }