Hi,
I already used the sd_ble_uuid_vs_add for adding my base UUID in the internal table and it return a valid uuid_type (in my specific case it's 0x06). I need to add my UUID service into the advertising packet. The UUIDs array is defined as follow :
ble_uuid_t m_adv_uuids[] = {{BLE_UUID_COM_SERVICE,m_com.uuid_type}};
but I receive the err_code = 7 (NRF_ERROR_INVALID_PARAMETER) from the ble_advdata_set function. I'm sure that m_com.uuid_type has the right value because I print it on the console (its value is 0x06).
Why ?
Thanks, Paolo.