BLE主机(05)扫描获取从机数据包

主机获取从机数据包内容功能讲解。

根据eventType进行区分。

        case GAP_DEVICE_INFO_EVENT:
        {
            // Add device to list
//            centralAddDeviceInfo(pEvent->deviceInfo.addr, pEvent->deviceInfo.addrType);
            PRINT("EventType:%x\n",pEvent->deviceInfo.eventType);

            for(uint8_t i = 0; i < B_ADDR_LEN; i++){
              PRINT("%02x ",pEvent->deviceInfo.addr[i]);
            }PRINT("\n");

            for(uint8_t i = 0; i < pEvent->deviceInfo.dataLen; i++){
              PRINT("%02x ",pEvent->deviceInfo.pEvtData[i]);
            }PRINT("\n\n");
        }
        break;

测试;

从机使用Broadcast,修改initial_adv_event_type类型为GAP_ADTYPE_ADV_IND,确保可以获取到广播包和扫描应答包。

主机扫描打印信息

会发现以下2种数据包,对比手机获取到的数据包。

posted @ 2024-12-11 11:23  SweetTea_lllpc  阅读(48)  评论(0编辑  收藏  举报