Android: Limit of simultaneous BLE connections

前端 未结 1 1840
既然无缘
既然无缘 2020-12-18 04:56

we are developing an Android app which can connect to multiple heart rate sensors simultaneoulsy via Bluetooth Low Energy.

We have an implementation which is working

相关标签:
1条回答
  • 2020-12-18 05:39

    In case that you are still interested in it. The limit comes from BTA_GATTC_CONN_MAX (hardcoded in android) Which is set to:

    • 4 on Android 4.3 and
    • 7 on Android 4.4

    There is by the way also a limit on the amount of characteristics for which you can activate notifications. (BTA_GATTC_NOTIF_REG_MAX) which is:

    • 4 on Android 4.3,
    • 7 on Android 4.4 and
    • 15 on Android 5.0
    0 讨论(0)
提交回复
热议问题