Hello
I am trying to add two custom UUID as below ( Platform nRF52) . And the API return error when I call the second time, with a different UUID .
err_code = sd_ble_uuid_vs_add(&wls_base_uuid, &p_wls->uuid_type);
VERIFY_SUCCESS(err_code);
If I reverse the order again the second UUID creation fails . the return cde is 4 - NO Memory ,
I tried set the UUID count as 2
ble_enable_params.common_enable_params.vs_uuid_count=2;
then
err_code = softdevice_enable(&ble_enable_params)
its not getting passed this
Seems the softdevice has some issue ?
I also tried to adjust RAM with no luck
Please help with this