File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
connectivity/FEATURE_BLE/include/ble/gatt Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -444,11 +444,11 @@ struct GattDataSentCallbackParams {
444
444
};
445
445
446
446
/* *
447
- * Gatt Updates Enabled Attribute related events
447
+ * Gatt Updates Changed Attribute related events
448
448
*
449
- * Used by `onUpdatesEnabled`
449
+ * Used by `onUpdatesEnabled` and 'onUpdatesDisabled'
450
450
*/
451
- struct GattUpdatesEnabledCallbackParams {
451
+ struct GattUpdatesChangedCallbackParams {
452
452
453
453
/* *
454
454
* The handle of the connection that triggered the event.
@@ -461,14 +461,15 @@ struct GattUpdatesEnabledCallbackParams {
461
461
GattAttribute::Handle_t attHandle;
462
462
463
463
/* *
464
- * The handle of the characteristic containing the CCCD
464
+ * The value handle of the characteristic containing the CCCD
465
465
*/
466
466
GattAttribute::Handle_t charHandle;
467
467
468
468
};
469
469
470
- using GattUpdatesDisabledCallbackParams = GattUpdatesEnabledCallbackParams;
471
- using GattConfirmationReceivedCallbackParams = GattDataSentCallbackParams;
470
+ using GattUpdatesEnabledCallbackParams = GattUpdatesChangedCallbackParams;
471
+ using GattUpdatesDisabledCallbackParams = GattUpdatesChangedCallbackParams;
472
+ using GattConfirmationReceivedCallbackParams = GattDataSentCallbackParams;
472
473
473
474
namespace ble {
474
475
You can’t perform that action at this time.
0 commit comments