Hi :
We create UART Over BLE service on NRF52832 SoC. It worked fine used SoftDevice V2.0.
Now update SoftDevice to V7.2.0. got this issue. where can i found SoftDevice ASSERT detail information? How to solution this issue?
the NRF52840 dongle can find it , connected, get it's service.

Here is my config:
// config S132 softDevice
// first link
memset(&cfg, 0, sizeof(ble_cfg_t));
cfg.conn_cfg.conn_cfg_tag = 1;
cfg.conn_cfg.params.gap_conn_cfg.conn_count = 1;
cfg.conn_cfg.params.gap_conn_cfg.event_length = 6;
err_code = sd_ble_cfg_set(BLE_CONN_CFG_GAP, &cfg, app_ram_base);
memset(&cfg, 0, sizeof(ble_cfg_t));
cfg.common_cfg.vs_uuid_cfg.vs_uuid_count = 4;
err_code = sd_ble_cfg_set(BLE_COMMON_CFG_VS_UUID, &cfg, app_ram_base);
// // config GATT MUT size to 247
// memset(&cfg, 0, sizeof(ble_cfg_t));
// cfg.conn_cfg.conn_cfg_tag = 1;
// cfg.conn_cfg.params.gatt_conn_cfg.att_mtu = 247;
// err_code = sd_ble_cfg_set(BLE_CONN_CFG_GATT, &cfg, app_ram_base);
// config GAP role & connect
memset(&cfg, 0, sizeof(ble_cfg_t));
cfg.gap_cfg.role_count_cfg.periph_role_count = 1;
cfg.gap_cfg.role_count_cfg.central_role_count = 0;
cfg.gap_cfg.role_count_cfg.central_sec_count = 0;
err_code = sd_ble_cfg_set(BLE_GAP_CFG_ROLE_COUNT, &cfg, app_ram_base);
// config Gatts attribute tab size & service changed flag
memset(&cfg, 0, sizeof(ble_cfg_t));
cfg.gatts_cfg.attr_tab_size.attr_tab_size = 1536;
err_code = sd_ble_cfg_set(BLE_GATTS_CFG_ATTR_TAB_SIZE, &cfg, app_ram_base);
memset(&cfg, 0, sizeof(ble_cfg_t));
cfg.gatts_cfg.service_changed.service_changed = 1;
err_code = sd_ble_cfg_set(BLE_GATTS_CFG_SERVICE_CHANGED, &cfg, app_ram_base);
err_code = sd_ble_enable(&app_ram_base);