Issue is related to: devzone.nordicsemi.com/.../ Now I use latest SD S130_1.0 So, I added to my service characteristic with notifications enabled. But during discovering services using MCP on PC at reading CCC of char. with notify my device reboots. Using last issue (link above) I added case in ble event dispatcher:
case BLE_GATTS_EVT_SYS_ATTR_MISSING:
err_code = sd_ble_gatts_sys_attr_set(p_ble_evt->evt.common_evt.conn_handle, NULL, 0, 0);
APP_ERROR_CHECK(err_code);
And now it works. The question is: should I use this workaround or I do something wrong when initialize and add this characteristic?