From 33405cce29b5dd518d4375022c4738878d6a2723 Mon Sep 17 00:00:00 2001 From: shrikar Date: Wed, 27 Mar 2024 23:09:25 +0000 Subject: [PATCH] Updated VehicleIgnitionState.aidl docs to explain state behavior in BEVs Bug: 322556750 Test: presubmit Change-Id: I97b672fa7892de45169ae568d330f5382aa38dc1 --- .../hardware/automotive/vehicle/VehicleIgnitionState.aidl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehicleIgnitionState.aidl b/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehicleIgnitionState.aidl index 4de97f6639..2338008d59 100644 --- a/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehicleIgnitionState.aidl +++ b/automotive/vehicle/aidl_property/android/hardware/automotive/vehicle/VehicleIgnitionState.aidl @@ -28,6 +28,10 @@ enum VehicleIgnitionState { * Steering wheel is not locked, engine and all accessories are OFF. If * car can be in LOCK and OFF state at the same time than HAL must report * LOCK state. + * + * If IGNITION_STATE is implemented on a BEV, then this state must + * communicate that the BEV's High Voltage battery is disconnected and thus + * the vehicle is OFF. */ OFF, /** @@ -38,6 +42,10 @@ enum VehicleIgnitionState { /** * Ignition is in state ON. Accessories and instrument cluster available, * engine might be running or ready to be started. + * + * If IGNITION_STATE is implemented on a BEV, then this state must + * communicate that the BEV's High Voltage battery is connected and thus the + * vehicle is ON. */ ON, /**