BLE: handle GattServerEvents::GATT_EVENT_DATA_SENT

pull/10581/head
Vincent Coubard 2019-05-14 17:12:02 +01:00
parent 134f71e6ba
commit e814a3cfb3
1 changed files with 6 additions and 0 deletions

View File

@ -693,6 +693,12 @@ protected:
confirmationReceivedCallback(attributeHandle);
}
break;
case GattServerEvents::GATT_EVENT_DATA_SENT:
// Called every time a notification or indication has been sent
handleDataSentEvent(1);
break;
default:
break;
}