hello support ,
when I add the following code to ble_app_hrs example under the function advertising_init() there is no Advertising from the DK
What could be problem ?
ble_advdata_manuf_data_t manuf_data; //Variable to hold manufacturer specific data
uint8_t data[] = "SomeData!";
manuf_data.company_identifier = 0x0059; //Nordics company ID
manuf_data.data.p_data = data;
manuf_data.data.size = sizeof(data);
init.advdata.p_manuf_specific_data = &manuf_data; //Our data to advertise