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

Commit 3cf0e0db authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11641371 from 7f788a7b to 24Q3-release

Change-Id: Id910dc321fdc82a69c38e48537b15b017db043ca
parents 9f104d21 7f788a7b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@
                    "EvConnectorType"
                ],
                "data_enum": "EvConnectorType",
                "description": "List of connectors this EV may use"
                "description": "List of connectors this EV may use\nIf the vehicle has multiple charging ports, this property must return all possible connector types that can be used by at least one charging port on the vehicle."
            },
            {
                "name": "Fuel door location",
@@ -169,12 +169,12 @@
            {
                "name": "EV charge port open",
                "value": 287310602,
                "description": "EV charge port open\nThis property is defined as VehiclePropertyAccess.READ_WRITE, but OEMs have the option to implement it as VehiclePropertyAccess.READ only."
                "description": "EV charge port open\nIf the vehicle has multiple charging ports, this property must return true if any of the charge ports are open.\nThis property is defined as VehiclePropertyAccess.READ_WRITE, but OEMs have the option to implement it as VehiclePropertyAccess.READ only."
            },
            {
                "name": "EV charge port connected",
                "value": 287310603,
                "description": "EV charge port connected"
                "description": "EV charge port connected\nIf the vehicle has multiple charging ports, this property must return true if any of the charge ports are connected."
            },
            {
                "name": "EV_BATTERY_INSTANTANEOUS_CHARGE_RATE",
+9 −0
Original line number Diff line number Diff line
@@ -142,6 +142,9 @@ enum VehicleProperty {
    /**
     * List of connectors this EV may use
     *
     * If the vehicle has multiple charging ports, this property must return all possible connector
     * types that can be used by at least one charging port on the vehicle.
     *
     * @change_mode VehiclePropertyChangeMode.STATIC
     * @data_enum EvConnectorType
     * @access VehiclePropertyAccess.READ
@@ -440,6 +443,9 @@ enum VehicleProperty {
    /**
     * EV charge port open
     *
     * If the vehicle has multiple charging ports, this property must return true if any of the
     * charge ports are open.
     *
     * This property is defined as VehiclePropertyAccess.READ_WRITE, but OEMs have the option to
     * implement it as VehiclePropertyAccess.READ only.
     *
@@ -453,6 +459,9 @@ enum VehicleProperty {
    /**
     * EV charge port connected
     *
     * If the vehicle has multiple charging ports, this property must return true if any of the
     * charge ports are connected.
     *
     * @change_mode VehiclePropertyChangeMode.ON_CHANGE
     * @access VehiclePropertyAccess.READ
     * @version 2
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ impl From<String> for HalServiceError {
}

fn main() {
    if let Err(e) = inner_main() {
    if let Err(HalServiceError(e)) = inner_main() {
        panic!("HAL service failed: {:?}", e);
    }
}