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

nrf_error_svc_handler_missing in sd_ble_cfg_set

hi all. 

I am trying to change number of data packets in one time interval.

I don't know the senario to change it.

For first step I wrote this code to change the quee size.

I got this error.

ble_gatts_conn_cfg_t cfg_t;
cfg_t.hvn_tx_queue_size = 5;

ble_conn_cfg_t cfg={0};
cfg.conn_cfg_tag = 1;
cfg.params.gatts_conn_cfg = cfg_t;

ble_cfg_t final_cfg={0};
final_cfg.conn_cfg = cfg;
final_cfg.conn_cfg.conn_cfg_tag = 1;
final_cfg.conn_cfg.params.gatts_conn_cfg.hvn_tx_queue_size=5;
uint32_t app_ram_base = 0x20002280;
error_cfg = sd_ble_cfg_set(BLE_CONN_CFG_GATTS ,&final_cfg,app_ram_base);

please help for the senario steps to change the number of packets and the error.

I use sdk 17.0.2 and s132 v7.2.0

thanks

Parents Reply Children
No Data
Related