Bluetooth: Central / Multilink¶
1 功能概述¶
此项目演示蓝牙主机功能,通过扫描其他BLE设备,并使用足够强的信号与多达8个外设建立连接,演示BLE Central功能。
2 环境要求¶
board: 支持 BLE 的蓝牙设备
uart(option): 用来显示串口log
测试软件: nRF Connect
3 编译和烧录¶
项目位置:zephyr\samples_panchip\bluetooth\central_multilink
目前可使用ZAL工具或quick build脚本进行编译和下载。
脚本位置:quick_build_samples\bluetooth\central_multilink.bat
。
打开脚本后默认会编译项目,编译完成时,可输入字符进行后续下载等操作:
Input the keyword to continue:
'b' build 编译项目
'r' make clean and rebuild 重新编译项目
'f' flash download 下载
'e' erase chip 擦除芯片
'o' open project by VS Code 打开 `VS Code`,可查看源码,执行编译下载等
others exit 退出
wait input:
4 演示说明¶
烧录完成后,设备可以正常扫描,串口打印log
Scanning successfully started Device found: DF:BC:88:D2:0C:B9 (random) (RSSI -43) Device found: 6F:5D:36:7B:0E:78 (random) (RSSI -81) Device found: DF:BC:88:D2:0C:B9 (random) (RSSI -42) Device found: A0:E6:F8:AB:0F:6C (public) (RSSI -50) Device found: 54:A5:72:32:E5:77 (random) (RSSI -43) Device found: A0:E6:F8:AB:0F:6C (public) (RSSI -46)
扫描到设备的RSSI< -35时,就会connect;
准备8个csc设备,主设备可以正常连接8个设备
配置连接个数: CONFIG_BT_MAX_CONN=8 CONFIG_BT_CTLR_MAX_NUM_OF_STATES=8