SD140
Part nrf52833
Application: Central App that connects to 1 to 16 different peripherals. One at a time.
Problem: 1/10th of the time, I get a disconnect reason BLE_HCI_CONN_FAILED_TO_BE_ESTABLISHED == 0x3E.
What could be causing this? Most times the connection works. Are there some time-outs coming in to play/
Thanks,
Dan
case BLE_GAP_EVT_DISCONNECTED:
NRF_LOG_INFO("Disconnected. conn_handle: 0x%x, reason: 0x%x",
p_gap_evt->conn_handle,
p_gap_evt->params.disconnected.reason);
// Allow one retry, if disconnect reason 0x34
if(BLE_HCI_CONN_FAILED_TO_BE_ESTABLISHED == p_gap_evt->params.disconnected.reason)
{
// allow one retry of the connection process
NRF_LOG_INFO("ALLOW ONE CONNECT RETRY?");
// host_to_cble_RetryConnectOnce();
}