Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f38f62a1 authored by Steve Paik's avatar Steve Paik
Browse files

Add STEERING_ANGLE property

Bug: 80551979
Test: Added property to VHAL
Change-Id: Ie6310d85af9bf0aebe63f0f2fdbac9a75c32b1ec
parent 82ef3872
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -321,6 +321,21 @@ enum VehicleProperty : int32_t {
        | VehiclePropertyType:FLOAT
        | VehicleArea:GLOBAL),

    /**
     * Steering angle of the vehicle
     *
     * Angle is in degrees.  Left is negative.
     *
     * @change_mode VehiclePropertyChangeMode:CONTINUOUS
     * @access VehiclePropertyAccess:READ
     * @unit VehicleUnit:DEGREES
     */
    PERF_STEERING_ANGLE = (
        0x0209
        | VehiclePropertyGroup:SYSTEM
        | VehiclePropertyType:FLOAT
        | VehicleArea:GLOBAL),

    /**
     * Temperature of engine coolant
     *
@@ -2421,13 +2436,15 @@ enum VehicleUnit : int32_t {
    NANO_SECS      = 0x50,
    SECS           = 0x53,
    YEAR           = 0x59,
    KILOPASCAL     = 0x70,

    // Electrical Units
    WATT_HOUR      = 0x60,
    MILLIAMPERE    = 0x61,
    MILLIVOLT      = 0x62,
    MILLIWATTS     = 0x63,

    KILOPASCAL     = 0x70,
    DEGREES        = 0x80,
};

/**