Skip to content

Commit

Permalink
Add NimBLEClient::cancelConnect
Browse files Browse the repository at this point in the history
Adds a function to cancel and in-progress connection.
  • Loading branch information
h2zero committed Nov 12, 2024
1 parent bf2e402 commit a0221ff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/NimBLEClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,21 @@ bool NimBLEClient::disconnect(uint8_t reason) {
return true;
} // disconnect

/**
* @brief Cancel an ongoing connection attempt.
* @return True if the command was successfully sent.
*/
bool NimBLEClient::cancelConnect() {
int rc = ble_gap_conn_cancel();
if (rc != 0 && rc != BLE_HS_EALREADY) {
NIMBLE_LOGE(LOG_TAG, "ble_gap_conn_cancel failed: rc=%d %s", rc, NimBLEUtils::returnCodeToString(rc));
m_lastErr = rc;
return false;
}

return true;
} // cancelConnect

# if CONFIG_BT_NIMBLE_EXT_ADV
/**
* @brief Set the PHY types to use when connecting to a server.
Expand Down
1 change: 1 addition & 0 deletions src/NimBLEClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class NimBLEClient {
bool connect(const NimBLEAddress& address, bool deleteAttributes = true, bool asyncConnect = false, bool exchangeMTU = true);
bool connect(bool deleteAttributes = true, bool asyncConnect = false, bool exchangeMTU = true);
bool disconnect(uint8_t reason = BLE_ERR_REM_USER_CONN_TERM);
bool cancelConnect();
NimBLEAddress getPeerAddress() const;
bool setPeerAddress(const NimBLEAddress& address);
int getRssi() const;
Expand Down

0 comments on commit a0221ff

Please sign in to comment.