From 43dd9ab7c7894ed5e212a08f7b5d6e5b2c197e62 Mon Sep 17 00:00:00 2001 From: shrikar Date: Tue, 19 Dec 2023 18:54:22 +0000 Subject: [PATCH] Fixed documentation for resolution in SubscriptionOptions.aidl Bug: 276124296 Test: m Change-Id: Ia75f4ca8389aedff4636af844dd76dfe8c8b6105 --- .../android/hardware/automotive/vehicle/SubscribeOptions.aidl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automotive/vehicle/aidl/android/hardware/automotive/vehicle/SubscribeOptions.aidl b/automotive/vehicle/aidl/android/hardware/automotive/vehicle/SubscribeOptions.aidl index 69f6190363..14469b547f 100644 --- a/automotive/vehicle/aidl/android/hardware/automotive/vehicle/SubscribeOptions.aidl +++ b/automotive/vehicle/aidl/android/hardware/automotive/vehicle/SubscribeOptions.aidl @@ -45,8 +45,8 @@ parcelable SubscribeOptions { * * This value indicates the resolution at which continuous property updates should be sent to * the platform. For example, if resolution is 0.01, the subscribed property value should be - * rounded to two decimal places. If the incoming resolution value is not an integer multiple of - * 10, VHAL should return a StatusCode::INVALID_ARG. + * rounded to two decimal places. If the incoming resolution value is not an integer power of + * 10 (i.e. 10^-2, 10^-1, 10^2, etc.), VHAL should return a StatusCode::INVALID_ARG. */ float resolution = 0.0f;