he current system structure is that the device measures eddystone RSSI data and transmits specific namespace data to the observer device when it reaches a certain distance.
The current problem is that the BLE5 stack Central must be used to use the RPA function. Is this logic applicable to BLE5 stack central?
The namespace is structured like this:
memcpy(rsp_data, pEvent->deviceInfo.pEvtData, pEvent->deviceInfo.dataLen);
if((rsp_data[10]==0x53)&&(rsp_data[11]==0x61)&&(rsp_data[12]==0x6d)&&(rsp_data[13]==0x73)&&(rsp_data[14]==0x75)&&(rsp_data[15]==0x6e)&&(rsp_data[16]==0x67)&&(rsp_data[17]==0x45)&&
(rsp_data[18]==0x64)&&(rsp_data[19]==0x64))
If possible, we will use the RPA function to inquire about using a whitelist so that only the relevant namespace can be searched.
thank you