Hi everyone,
I want instead of MAC address to advertise my device using its 64bit unique ID. What I am considering, is to use the p_data array for that purpose and more specific to advertise using scan responce format as follows
ble_advertising_init_t init;
uint8_t uniqueID[]={01,02,03,04,05,06,07,08};
init.srdata.p_manuf_specific_data->data.size = sizeof(uniqueID) / sizeof(uniqueID[0]);
init.srdata.p_manuf_specific_data->data.p_data = uniqueID;
My problem is that it isn't work.. I do not see the uniqueID while advertising
So my questions are:
1. Is it possible and wise to advertise the unique ID?
2. What it the best method of doing this?
Thanks in advance
Nick