File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
connectivity/FEATURE_BLE/include/ble Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -413,8 +413,8 @@ class Gap {
413
413
414
414
/* *
415
415
* Called when connection attempt ends. Check event.getStatus() to see if connection
416
- * was established. If this device is the peripheral and it as advertising this will
417
- * end advertising which will also create the onAdvertisingEnd event.
416
+ * was established. If this device is the peripheral and it was advertising this will
417
+ * end the advertising set which will also create the onAdvertisingEnd event.
418
418
*
419
419
* @see startAdvertising()
420
420
* @see connect()
@@ -1093,6 +1093,7 @@ class Gap {
1093
1093
* @see EventHandler::onUpdateConnectionParametersRequest when a central
1094
1094
* receives a request to update the connection parameters.
1095
1095
*
1096
+ * @see onUpdateConnectionParametersRequest
1096
1097
* @see acceptConnectionParametersUpdate to accept the request.
1097
1098
* @see rejectConnectionParametersUpdate to reject the request.
1098
1099
*/
Original file line number Diff line number Diff line change @@ -273,6 +273,7 @@ class SecurityManager
273
273
* @param[in] result result of the pairing indicating success or reason for failure
274
274
*
275
275
* @see acceptPairingRequest()
276
+ * @see requestPairing()
276
277
*/
277
278
virtual void pairingResult (ble::connection_handle_t connectionHandle, SecurityCompletionStatus_t result) {
278
279
(void )connectionHandle;
@@ -626,8 +627,9 @@ class SecurityManager
626
627
* or cancelPairingRequest if the user wishes to reject it.
627
628
* @return BLE_ERROR_NONE or appropriate error code indicating the failure reason.
628
629
*
629
- *
630
630
* @see EventHandler::pairingRequest()
631
+ * @see EventHandler::acceptPairingRequest()
632
+ * @see EventHandler::cancelPairingRequest()
631
633
*/
632
634
ble_error_t setPairingRequestAuthorisation (bool required = true );
633
635
You can’t perform that action at this time.
0 commit comments