- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 AOSP 应用程序,它必须向蓝牙芯片组发送 HCI 命令。
我发现我可以使用这个接口(interface):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 开发的新手,我该如何使用这个库?
最佳答案
如果您是应用程序开发人员:
您找到的 IBluetoothHci
定义了蓝牙硬件抽象层 (HAL) 的接口(interface)。 HAL 接口(interface)不能直接从应用程序访问,但由框架服务使用,框架服务提供可供应用程序使用的接口(interface)。我建议查看 Android SDK:https://developer.android.com/guide/topics/connectivity/bluetooth
如果您是平台开发人员:
如果您打算编写具有更多权限的服务(您自己构建 AOSP 并刷新整个设备),那么您是对的。IBluetoothHci
是要使用的接口(interface)。您可能希望从使用 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 接口(interface)的提示也可以在相应的 VTS 测试中找到(虽然它们是用 C++ 编写的):https://android.googlesource.com/platform/hardware/interfaces/+/refs/heads/master/bluetooth/1.0/vts/functional/VtsHalBluetoothV1_0TargetTest.cpp
关于android - 如何使用蓝牙 HIDL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56239716/
我正在开发一个 AOSP 应用程序,它必须向蓝牙芯片组发送 HCI 命令。 我发现我可以使用这个接口(interface):https://source.android.com/reference/h
我对 Android O HIDL 有疑问。失败日志显示找不到该服务。 但是我可以通过 adb shell ps -A | 看到它grep 指纹 system 18758 1
出于测试目的,我想创建一个 HIDL 接口(interface) + 实现并将组合作为系统服务运行。为此,我定义了 IGuotie.hal 接口(interface): package android
我想构建一个 java hidl 客户端。 它使用 mmm 和 Android.mk 编译并运行良好。现在我想通过 gradle 构建它。 如这里所述:https://source.android.c
在 android 中,与 passthrough hidl 相比,binderised hidl 有什么优势? 据我所知,有两种 hidl 方式(绑定(bind)方式(独立进程中的客户端/服务器),
我是一名优秀的程序员,十分优秀!