循环启动和停止时蓝牙 LE 广告失败
Bluetooth LE advertising fails when started and stopped cyclically
我尝试了蓝牙 LE 广告,即使用 Android phone 作为 BLE "peripheral" 设备。启动和停止持续的广告一次工作正常,但如果我想实际传输一些不同的数据,我需要在一个周期中启动、停止和重新启动广告,并始终更改广告包。
我当然在使用这些方法:
BluetoothLeAdvertiser.startAdvertising()
BluetoothLeAdvertiser.stopAdvertising()
至少在摩托罗拉 Moto G 4G 2nd gen 上。 (XT1072) Android 5.0.2 的周期只有 运行s 一段时间,然后蓝牙堆栈出现问题,无法再开始新的广播。当运行快速循环时,这种情况发生得很快,如果运行缓慢循环,则需要更多时间,因此可能与某些缓冲区填满有关。
我的问题是:除摩托罗拉外,其他设备是否也会发生这种情况?
(当然欢迎任何其他相关评论。)
理论上它可能取决于某些制造商特定的 HAL 实现等。所以我想知道我是否应该得到另一台设备来解决这个问题,因为 Google/Motorola 的任何修复都需要当然是一些时间。
这个测试应用。可以用来试试这个:
https://bitbucket.org/MarkusKauppinen/bleadvertisertest
如果一切顺利,它会很乐意一直做广告,如果这个问题再次出现,它会在几分钟左右显示一个对话框。如果您的设备根本不支持蓝牙 LE 广告或 BLE,它就会崩溃。 (这只是一个快速而简单的测试应用程序。)
重现此问题的另一种简单方法是 运行 来自 https://github.com/devunwired/accessory-samples 的 "bluetoothadvertiser" 应用程序,然后快速点击 UI 上的 "Update advertisement" 按钮]一会儿。
其他详细信息:
Lollipop 中添加了蓝牙 LE 外设模式支持(广告需要),4.x 中不可用。只有某些设备具有外设模式支持。兼容性至少包含在:
https://altbeacon.github.io/android-beacon-library/beacon-transmitter-devices.html
Chipsets/Devices supporting Android 5 BLE peripheral mode
chipsets supporting BLE peripheral role on Android 5
例如,这些设备应该支持:Motorola Moto E 4G (2015)、Motorola Moto G 4G(第 2 代)、Sony Xperia M4 Aqua、ZTE Blade S6、Motorola Moto X (2014)、Samsung Galaxy S6、Google Nexus 6、Google Nexus 9、HTC One M9、三星 Galaxy S6 Edge。
至于 "dirty details" 在这种情况发生之前,我总能在 LogCat 中看到一个 "GKI_Exception":
GKI_exception(): 65524 getbuf: out of buffers
在第一个 "GKI_Exception" 之后不久,广告因 AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR 而失败。该行...
E/BtGatt.btif? ### ASSERT :
external/bluetooth/bluedroid/main/../btif/src/btif_gatt_client.c line
803 Context transfer failed! (3) ###
...可能相关,但我不熟悉 BlueDroid。所说的断言在这里:
一些可能相关的问题:
https://code.google.com/p/android/issues/detail?id=65455 <-- 我给这个添加了一些评论和日志文件。
https://code.google.com/p/android-developer-preview/issues/detail?id=1753
Scanning large number of BLE Tags
Bluetooth Crash on Samsung S4
我在 Moto G 2nd Gen 上测试了您的应用,运行 遇到了同样的问题。
我在 Nexus 9 平板电脑 运行ning Android 6.0 上试过,我无法重现错误,但它似乎可以工作。同样在 Android 5.1.1 的 Nexus 播放器上 运行 似乎没有问题。
所以它要么真的是 Moto G 的问题,要么 - 我认为更有可能 - Android 5.0.2 的错误已在更高版本中解决。
我尝试了蓝牙 LE 广告,即使用 Android phone 作为 BLE "peripheral" 设备。启动和停止持续的广告一次工作正常,但如果我想实际传输一些不同的数据,我需要在一个周期中启动、停止和重新启动广告,并始终更改广告包。
我当然在使用这些方法:
BluetoothLeAdvertiser.startAdvertising()
BluetoothLeAdvertiser.stopAdvertising()
至少在摩托罗拉 Moto G 4G 2nd gen 上。 (XT1072) Android 5.0.2 的周期只有 运行s 一段时间,然后蓝牙堆栈出现问题,无法再开始新的广播。当运行快速循环时,这种情况发生得很快,如果运行缓慢循环,则需要更多时间,因此可能与某些缓冲区填满有关。
我的问题是:除摩托罗拉外,其他设备是否也会发生这种情况?
(当然欢迎任何其他相关评论。)
理论上它可能取决于某些制造商特定的 HAL 实现等。所以我想知道我是否应该得到另一台设备来解决这个问题,因为 Google/Motorola 的任何修复都需要当然是一些时间。
这个测试应用。可以用来试试这个:
https://bitbucket.org/MarkusKauppinen/bleadvertisertest
如果一切顺利,它会很乐意一直做广告,如果这个问题再次出现,它会在几分钟左右显示一个对话框。如果您的设备根本不支持蓝牙 LE 广告或 BLE,它就会崩溃。 (这只是一个快速而简单的测试应用程序。)
重现此问题的另一种简单方法是 运行 来自 https://github.com/devunwired/accessory-samples 的 "bluetoothadvertiser" 应用程序,然后快速点击 UI 上的 "Update advertisement" 按钮]一会儿。
其他详细信息:
Lollipop 中添加了蓝牙 LE 外设模式支持(广告需要),4.x 中不可用。只有某些设备具有外设模式支持。兼容性至少包含在:
https://altbeacon.github.io/android-beacon-library/beacon-transmitter-devices.html Chipsets/Devices supporting Android 5 BLE peripheral mode chipsets supporting BLE peripheral role on Android 5
例如,这些设备应该支持:Motorola Moto E 4G (2015)、Motorola Moto G 4G(第 2 代)、Sony Xperia M4 Aqua、ZTE Blade S6、Motorola Moto X (2014)、Samsung Galaxy S6、Google Nexus 6、Google Nexus 9、HTC One M9、三星 Galaxy S6 Edge。
至于 "dirty details" 在这种情况发生之前,我总能在 LogCat 中看到一个 "GKI_Exception":
GKI_exception(): 65524 getbuf: out of buffers
在第一个 "GKI_Exception" 之后不久,广告因 AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR 而失败。该行...
E/BtGatt.btif? ### ASSERT : external/bluetooth/bluedroid/main/../btif/src/btif_gatt_client.c line 803 Context transfer failed! (3) ###
...可能相关,但我不熟悉 BlueDroid。所说的断言在这里:
一些可能相关的问题:
https://code.google.com/p/android/issues/detail?id=65455 <-- 我给这个添加了一些评论和日志文件。
https://code.google.com/p/android-developer-preview/issues/detail?id=1753
Scanning large number of BLE Tags
Bluetooth Crash on Samsung S4
我在 Moto G 2nd Gen 上测试了您的应用,运行 遇到了同样的问题。
我在 Nexus 9 平板电脑 运行ning Android 6.0 上试过,我无法重现错误,但它似乎可以工作。同样在 Android 5.1.1 的 Nexus 播放器上 运行 似乎没有问题。 所以它要么真的是 Moto G 的问题,要么 - 我认为更有可能 - Android 5.0.2 的错误已在更高版本中解决。