mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-22 13:10:55 +01:00
Limit delay in NimBLEClient::connect to connection timeout.
In the case the controller become unresponsive, or does not comply with the timeout period, this will ensure the application continues instead of potentially blocking forever.
This commit is contained in:
parent
6ee1cc236a
commit
c157680575
1 changed files with 17 additions and 3 deletions
|
@ -246,9 +246,23 @@ bool NimBLEClient::connect(const NimBLEAddress &address, bool deleteAttibutes) {
|
||||||
|
|
||||||
} while (rc == BLE_HS_EBUSY);
|
} while (rc == BLE_HS_EBUSY);
|
||||||
|
|
||||||
// Wait for the connection to complete.
|
// Wait for the connect timeout time +1 second for the connection to complete
|
||||||
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
if(ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(m_connectTimeout + 1000)) == pdFALSE) {
|
||||||
if(taskData.rc != 0){
|
m_pTaskData = nullptr;
|
||||||
|
// If a connection was made but no response from MTU exchange; disconnect
|
||||||
|
if(isConnected()) {
|
||||||
|
NIMBLE_LOGE(LOG_TAG, "Connect timeout - no response");
|
||||||
|
disconnect();
|
||||||
|
} else {
|
||||||
|
// workaround; if the controller doesn't cancel the connection
|
||||||
|
// at the timeout cancel it here.
|
||||||
|
NIMBLE_LOGE(LOG_TAG, "Connect timeout - cancelling");
|
||||||
|
ble_gap_conn_cancel();
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
|
||||||
|
} else if(taskData.rc != 0){
|
||||||
NIMBLE_LOGE(LOG_TAG, "Connection failed; status=%d %s",
|
NIMBLE_LOGE(LOG_TAG, "Connection failed; status=%d %s",
|
||||||
taskData.rc,
|
taskData.rc,
|
||||||
NimBLEUtils::returnCodeToString(taskData.rc));
|
NimBLEUtils::returnCodeToString(taskData.rc));
|
||||||
|
|
Loading…
Reference in a new issue