Merge "Update VehicleApPowerStateShutdownParam" into main

This commit is contained in:
Maxim Pleshivenkov 2023-12-13 20:21:16 +00:00 committed by Android (Google) Code Review
commit 510537ffa7
2 changed files with 5 additions and 0 deletions

View file

@ -40,4 +40,5 @@ enum VehicleApPowerStateShutdownParam {
SLEEP_IMMEDIATELY = 4,
HIBERNATE_IMMEDIATELY = 5,
CAN_HIBERNATE = 6,
EMERGENCY_SHUTDOWN = 7,
}

View file

@ -45,4 +45,8 @@ enum VehicleApPowerStateShutdownParam {
* AP can enter hibernation (suspend to disk) instead of shutting down completely.
*/
CAN_HIBERNATE = 6,
/**
* AP must shutdown (gracefully) without a delay.
*/
EMERGENCY_SHUTDOWN = 7,
}