Hi,
The central part of multirole example is not able to connect to peripheral (other board with ble_app_uart peripheral) and error returned is in the on_ble_central function in the line
case BLE_GATTS_EVT_TIMEOUT:
// Disconnect on GATT Server timeout event.
NRF_LOG_DEBUG("GATT Server Timeout.");
err_code = sd_ble_gap_disconnect(p_ble_evt->evt.gatts_evt.conn_handle,
BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION); // error
This means the peripheral is disconnecting and if it is so, what could be the possible reasons ?
Thank you