mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Merge "Update automotive generated aidl files."
This commit is contained in:
@@ -34,8 +34,8 @@
|
||||
package android.hardware.automotive.vehicle;
|
||||
@Backing(type="int") @VintfStability
|
||||
enum VehiclePropertyAccess {
|
||||
NONE = 0,
|
||||
READ = 1,
|
||||
WRITE = 2,
|
||||
READ_WRITE = 3,
|
||||
NONE = 0x00,
|
||||
READ = 0x01,
|
||||
WRITE = 0x02,
|
||||
READ_WRITE = 0x03,
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
package android.hardware.automotive.vehicle;
|
||||
@Backing(type="int") @VintfStability
|
||||
enum VehiclePropertyChangeMode {
|
||||
STATIC = 0,
|
||||
ON_CHANGE = 1,
|
||||
CONTINUOUS = 2,
|
||||
STATIC = 0x00,
|
||||
ON_CHANGE = 0x01,
|
||||
CONTINUOUS = 0x02,
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
package android.hardware.automotive.vehicle;
|
||||
@Backing(type="int") @VintfStability
|
||||
enum VehiclePropertyStatus {
|
||||
AVAILABLE = 0,
|
||||
UNAVAILABLE = 1,
|
||||
ERROR = 2,
|
||||
AVAILABLE = 0x00,
|
||||
UNAVAILABLE = 0x01,
|
||||
ERROR = 0x02,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user