Hi JRs:
请问个问题,CC2640R2F 作为 Beacon 设备发出来的信息一共包含哪些?
目前我知道的有 advertData[]、scanRspData[],此外还有其它的哪些信息呢?
谢谢
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi JRs:
请问个问题,CC2640R2F 作为 Beacon 设备发出来的信息一共包含哪些?
目前我知道的有 advertData[]、scanRspData[],此外还有其它的哪些信息呢?
谢谢
在例程simple peripheral里,是获取并打印出自身的设备地址的:
获取:
uint8_t ownAddress[B_ADDR_LEN]; uint8_t systemId[DEVINFO_SYSTEM_ID_LEN]; GAPRole_GetParameter(GAPROLE_BD_ADDR, ownAddress);
显示:
// Display device address
Display_print0(dispHandle, 1, 0, Util_convertBdAddr2Str(ownAddress));
Display_print0(dispHandle, 2, 0, "Initialized");