Android: Limit of simultaneous BLE connections

别来无恙 提交于 2019-11-29 07:13:36

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
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!