bleSlave.lua 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. --- 模块功能:蓝牙功能测试
  2. -- @author openLuat
  3. -- @module bluetooth.slave
  4. -- @license MIT
  5. -- @copyright openLuat
  6. -- @release 2020.09.27
  7. -- @注意 需要使用core(Luat_VXXXX_RDA8910_BT_FLOAT)版本
  8. module(..., package.seeall)
  9. --蓝牙/WIFI分时复用功能测试
  10. local btWifiTdmTest = true
  11. require "wifiScan"
  12. local bt_test = {}
  13. local function init()
  14. log.info("bt", "init")
  15. rtos.on(rtos.MSG_BLUETOOTH, function(msg)
  16. if msg.event == btcore.MSG_OPEN_CNF then
  17. sys.publish("BT_OPEN", msg.result) --蓝牙打开成功
  18. elseif msg.event == btcore.MSG_BLE_CONNECT_IND then
  19. sys.publish("BT_CONNECT_IND", {["handle"] = msg.handle, ["result"] = msg.result}) --蓝牙连接成功
  20. elseif msg.event == btcore.MSG_BLE_DISCONNECT_IND then
  21. log.info("bt", "ble disconnect") --蓝牙断开连接
  22. elseif msg.event == btcore.MSG_BLE_DATA_IND then
  23. sys.publish("BT_DATA_IND", {["result"] = msg.result})--接收到的数据内容
  24. end
  25. end)
  26. end
  27. local function unInit()
  28. btcore.close()
  29. end
  30. local function poweron()
  31. log.info("bt", "poweron")
  32. btcore.open(0) --打开蓝牙从模式
  33. _, result = sys.waitUntil("BT_OPEN", 5000) --等待蓝牙打开成功
  34. end
  35. --[[
  36. --自定义服务
  37. local function service(uuid,struct)
  38. btcore.addservice(uuid) --添加服务
  39. for i = 1, #struct do
  40. btcore.addcharacteristic(struct[i][1],struct[i][2],struct[i][3]) --添加特征
  41. if(type(struct[i][4]) == "table") then
  42. for j = 1,#struct[i][4] do
  43. btcore.adddescriptor(struct[i][4][j][1],struct[i][4][j][2]) --添加描述
  44. end
  45. end
  46. end
  47. end
  48. ]]
  49. local function advertising()
  50. --local struct1 = {{0xfee1, 0x08, 0x0002},
  51. -- {0xfee2, 0x10,0x0001, {{0x2902,0x0001},{0x2901,"123456"}}}}--{特征uuid,特征属性,特征权限,{特征描述uuid,描述属性}}
  52. --local struct2 = {{"9ecadc240ee5a9e093f3a3b50300406e",0x10,0x0001,{{0x2902,0x0001}}},
  53. -- {"9ecadc240ee5a9e093f3a3b50200406e",0x0c, 0x0002}}
  54. log.info("bt", "advertising")
  55. btcore.setname("Luat_Air724UG")-- 设置广播名称
  56. btcore.setadvdata(string.fromHex("02010604ff000203"))-- 设置广播数据 根据蓝牙广播包协议
  57. --btcore.setscanrspdata(string.fromHex("04ff000203"))-- 设置广播数据 根据蓝牙广播包协议
  58. --service(0xfee0, struct1)--添加服务16bit uuid 自定义服务
  59. --service("9ecadc240ee5a9e093f3a3b50100406e",struct2)--添加服务128bit uuid 自定义服务
  60. --btcore.setadvparam(0x80,0xa0,0,0,0x07,0,0,"11:22:33:44:55:66") --广播参数设置 (最小广播间隔,最大广播间隔,广播类型,广播本地地址类型,广播channel map,广播过滤策略,定向地址类型,定向地址)
  61. btcore.advertising(1)-- 打开广播
  62. end
  63. local function data_trans()
  64. advertising()
  65. _, bt_connect = sys.waitUntil("BT_CONNECT_IND") --等待连接成功
  66. if bt_connect.result ~= 0 then
  67. return false
  68. end
  69. --链接成功
  70. log.info("bt.connect_handle",bt_connect.handle) --连接句柄
  71. sys.wait(1000)
  72. log.info("bt.send", "Hello I'm Luat BLE")
  73. while true do
  74. _, bt_recv = sys.waitUntil("BT_DATA_IND") --等待接收到数据
  75. local data = ""
  76. local len = 0
  77. local uuid = ""
  78. while true do
  79. local recvuuid, recvdata, recvlen = btcore.recv(3)
  80. if recvlen == 0 then
  81. break
  82. end
  83. uuid = recvuuid
  84. len = len + recvlen
  85. data = data .. recvdata
  86. end
  87. if len ~= 0 then
  88. log.info("bt.recv_data", data)
  89. log.info("bt.recv_data len", len)
  90. log.info("bt.recv_uuid", string.toHex(uuid))
  91. if data == "close" then
  92. btcore.disconnect()--主动断开连接
  93. if btWifiTdmTest then return end
  94. end
  95. btcore.send(data, 0xfee2, bt_connect.handle)--发送数据(数据 对应特征uuid 连接句柄)
  96. end
  97. end
  98. end
  99. ble_test = {init, poweron,data_trans}
  100. if btWifiTdmTest then
  101. --蓝牙wifi分时复用测试方法:
  102. --1、测试wifi搜索热点功能
  103. --2、打开蓝牙,配置为从模式;手机上可以安装一个app,连接模块蓝牙,向模块发送数据测试;当手机app向模块发送5个字节的数据close时,模块会主动断开并且关闭蓝牙
  104. --3、延时5秒钟,继续从第1步开始测试
  105. sys.taskInit(function()
  106. while true do
  107. sys.wait(5000)
  108. log.info("wifiScan.request begin")
  109. wifiScan.request(function(result,cnt,tInfo)
  110. log.info("testWifi.scanCb",result,cnt)
  111. log.info("testLbsLoc.wifiScan.request result",result,cnt)
  112. sys.publish("WIFI_SCAN_IND",result,cnt,tInfo)
  113. end)
  114. sys.waitUntil("WIFI_SCAN_IND")
  115. log.info("wifiScan.request end")
  116. init()
  117. poweron()
  118. data_trans()
  119. --关闭蓝牙
  120. unInit()
  121. end
  122. end)
  123. else
  124. sys.taskInit(function()
  125. sys.wait(5000)
  126. for _, f in ipairs(ble_test) do
  127. f()
  128. end
  129. end)
  130. end