如何使用蓝牙HIDL?

时间:2019-05-21 13:45:16

标签: android bluetooth android-source hci

我正在开发一个必须向蓝牙芯片组发送HCI命令的AOSP应用程序。

我发现我可以使用此界面:https://source.android.com/reference/hidl/android/hardware/bluetooth/1.0/IBluetoothHci

要使用它,我尝试关注此页面:https://source.android.com/devices/architecture/hidl-java/index.html

如果我理解得很好,就必须创建一个Android.mk文件并放入

LOCAL_STATIC_JAVA_LIBRARIES +=  android.hardware.bluetooth@1.0

但是我不明白怎么办?我仍然是AOSP开发人员中的新手,如何使用该库?

1 个答案:

答案 0 :(得分:1)

如果您是应用程序开发人员

您找到的IBluetoothHci定义了蓝牙硬件抽象层(HAL)的接口。 HAL接口不能直接从应用程序访问,而是由框架服务使用,框架服务提供了可供应用程序使用的接口。 我建议您检出Android SDK:https://developer.android.com/guide/topics/connectivity/bluetooth

如果您是平台开发人员

如果您打算编写具有更多特权的服务(您自己构建AOSP并刷新整个设备),那是对的。IBluetoothHci是要使用的界面。您可能想要从使用Android.mk切换到Android.bp,因为不推荐使用Android.mk文件。 在您的代码中,我希望看到这样的东西:

import android.hardware.bluetooth.V1_0.IBluetoothHci;
...
// retry to wait until the service starts up if it is in the manifest
IBluetoothHci bluetooth = IBluetoothHci.getService(true /* retry */); // throws NoSuchElementException if not available
bluetooth.initialize();

有关如何使用HAL接口的提示,也可以在相应的VTS测试中找到(尽管它们是用C ++编写的):https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/master/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp