summaryrefslogtreecommitdiffstats
path: root/biometrics
diff options
context:
space:
mode:
authorKevin Chyn <kchyn@google.com>2019-03-11 11:21:14 -0700
committerKevin Chyn <kchyn@google.com>2019-03-11 11:21:14 -0700
commitb936d1d684b87162ce47479523f23ca98e811358 (patch)
treedd0598ab90dd987825fbdf83e29339935cd19c3f /biometrics
parent9e53c0ddd6952673fe5721fa473576957412f630 (diff)
downloadandroid_hardware_interfaces-b936d1d684b87162ce47479523f23ca98e811358.tar.gz
android_hardware_interfaces-b936d1d684b87162ce47479523f23ca98e811358.tar.bz2
android_hardware_interfaces-b936d1d684b87162ce47479523f23ca98e811358.zip
Add SENSOR_DIRTY constant
Fixes: 127993599 Test: Test: hidl-gen -L hash -r android.hardware:hardware/interfaces android.hardware.biometrics.face@1.0 add updated hash to current.txt Test: Builds Change-Id: I98a7953f3a99f263709a15f143a3ca5fd062b489
Diffstat (limited to 'biometrics')
-rw-r--r--biometrics/face/1.0/types.hal9
1 files changed, 7 insertions, 2 deletions
diff --git a/biometrics/face/1.0/types.hal b/biometrics/face/1.0/types.hal
index 8c4a4e9f4..de6b99ef1 100644
--- a/biometrics/face/1.0/types.hal
+++ b/biometrics/face/1.0/types.hal
@@ -340,9 +340,14 @@ enum FaceAcquiredInfo : int32_t {
START = 20,
/**
+ * The sensor is dirty. The user should be informed to clean the sensor.
+ */
+ SENSOR_DIRTY = 21,
+
+ /**
* Used to enable a vendor-specific acquisition message.
*/
- VENDOR = 21
+ VENDOR = 22
};
/**
@@ -375,4 +380,4 @@ struct OptionalBool {
* This value is only meaningful if status is OK.
*/
bool value;
-}; \ No newline at end of file
+};