Skip to content

Commit e814a3c

Browse files
committed
BLE: handle GattServerEvents::GATT_EVENT_DATA_SENT
1 parent 134f71e commit e814a3c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

features/FEATURE_BLE/ble/GattServer.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,12 @@ class GattServer {
693693
confirmationReceivedCallback(attributeHandle);
694694
}
695695
break;
696+
697+
case GattServerEvents::GATT_EVENT_DATA_SENT:
698+
// Called every time a notification or indication has been sent
699+
handleDataSentEvent(1);
700+
break;
701+
696702
default:
697703
break;
698704
}

0 commit comments

Comments
 (0)