Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Hello_BLE F446RE-BLE
Fork of X_NUCLEO_IDB0XA1 by
Diff: BlueNRGGattServer.cpp
- Revision:
- 66:8c8813dd8e79
- Parent:
- 64:6d7b775c3f6d
- Child:
- 67:23f9772ef7bf
diff -r f9958b8f2548 -r 8c8813dd8e79 BlueNRGGattServer.cpp --- a/BlueNRGGattServer.cpp Wed Apr 01 09:02:51 2015 +0000 +++ b/BlueNRGGattServer.cpp Wed Apr 01 09:48:50 2015 +0000 @@ -352,4 +352,21 @@ return p_char; } +void BlueNRGGattServer::HCIDataWrittenEvent(const GattCharacteristicWriteCBParams *params) { + this->handleDataWrittenEvent(params); +} + +void BlueNRGGattServer::HCIDataReadEvent(const GattCharacteristicReadCBParams *params) { + this->handleDataReadEvent(params); +} +void BlueNRGGattServer::HCIEvent(GattServerEvents::gattEvent_e type, uint16_t charHandle) { + this->handleEvent(type, charHandle); +} + +void BlueNRGGattServer::HCIDataSentEvent(unsigned count) { + this->handleDataSentEvent(count); +} + + +