This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Adding multiple 128 bit custom uuids for sdk 14

I am attempting to port a custom ble service from sdk12 to sdk 14 and am a bit confused as to how to increase my uuid count. In sdk12 I did it like this:

	uint32_t               err_code;
ble_enable_params_t ble_enable_params;

err_code = softdevice_enable_get_default_config(CENTRAL_LINK_COUNT,
                                            PERIPHERAL_LINK_COUNT,
                                            &ble_enable_params);
uint32_t * 	p_app_ram_base 

ble_enable_params.common_enable_params.vs_uuid_count = 3; // set number of vendor specific UUIDs.
err_code = softdevice_enable(&ble_enable_params);
APP_ERROR_CHECK(err_code);

Is there an equaly simple way I can set the vs_uuid_count in SDK14?

Related