summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-12-24 04:54:52 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-12-24 04:54:52 +0000
commit1f6534c3c162eae13a97346b6ca7926218ab300e (patch)
tree9b4b346921a99ec094bfc14aa8f9668cb66e3e7c
parent0078cbc381e98676c062ba0b8323e9c35fd700d3 (diff)
parent91c740d712e12227283d2c7a335b2fc22a5f3a11 (diff)
downloadinterfaces-1f6534c3c162eae13a97346b6ca7926218ab300e.tar.gz
Merge "Introducing Bluetooth Sar common hidl"
-rw-r--r--bluetooth/sar/1.0/Android.bp11
-rw-r--r--bluetooth/sar/1.0/IBluetoothSar.hal49
2 files changed, 60 insertions, 0 deletions
diff --git a/bluetooth/sar/1.0/Android.bp b/bluetooth/sar/1.0/Android.bp
new file mode 100644
index 0000000..8f5e921
--- /dev/null
+++ b/bluetooth/sar/1.0/Android.bp
@@ -0,0 +1,11 @@
+hidl_interface {
+ name: "hardware.google.bluetooth.sar@1.0",
+ root: "hardware.google",
+ srcs: [
+ "IBluetoothSar.hal",
+ ],
+ interfaces: [
+ "android.hidl.base@1.0",
+ ],
+ gen_java: true,
+}
diff --git a/bluetooth/sar/1.0/IBluetoothSar.hal b/bluetooth/sar/1.0/IBluetoothSar.hal
new file mode 100644
index 0000000..5cb96d4
--- /dev/null
+++ b/bluetooth/sar/1.0/IBluetoothSar.hal
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * This is pixel only extension for Bluetooth HAL.
+ */
+package hardware.google.bluetooth.sar@1.0;
+
+interface IBluetoothSar {
+ /**
+ * API to set Bluetooth Tx power cap.
+ *
+ * This API must be invoked whenever maximum Bluetooth Tx power need to
+ * changed for optimising performance purpose in SAR scenarios.
+ *
+ * @param cap Bluetooth Tx cap. Range is between 0 and 80 units,
+ * each unit is 0.25 dBm.
+ */
+ oneway setBluetoothTxPowerCap(int8_t cap);
+
+ /**
+ * API to set Bluetooth Tx power cap of each tech.
+ *
+ * This API must be invoked whenever maximum Bluetooth Tx power for BR, EDR
+ * and BLE need to changed for optimising performance purpose in SAR
+ * scenarios.
+ *
+ * @param brCap Bluetooth Tx cap. Range is between 0 and 80 units,
+ * each unit is 0.25 dBm.
+ * @param edrCap Bluetooth Tx cap. Range is between 0 and 80 units,
+ * each unit is 0.25 dBm.
+ * @param bleCap Bluetooth Tx cap. Range is between 0 and 80 units,
+ * each unit is 0.25 dBm.
+ */
+ oneway setBluetoothTechBasedTxPowerCap(int8_t brCap, int8_t edrCap, int8_t bleCap);
+};