Lightly modified version of the BLE stack, that doesn't bring up a DFUService by default... as we have our own.
Fork of BLE_API by
Diff: public/GattServer.h
- Revision:
- 118:620d28e7a1ba
- Parent:
- 116:ca826083980e
- Child:
- 126:fdebe4d5d62f
diff -r 0fb20195102b -r 620d28e7a1ba public/GattServer.h --- a/public/GattServer.h Mon Sep 08 17:11:58 2014 +0100 +++ b/public/GattServer.h Mon Sep 22 10:59:09 2014 +0100 @@ -22,6 +22,7 @@ #include "GattService.h" #include "GattServerEvents.h" #include "GattCharacteristicWriteCBParams.h" +#include "CallChainOfFunctionPointersWithContext.h" /**************************************************************************/ /*! @@ -45,14 +46,17 @@ /* Event callback handlers. */ typedef void (*EventCallback_t)(uint16_t attributeHandle); - typedef void (*WriteEventCallback_t)(uint16_t attributeHandle, const GattCharacteristicWriteCBParams *eventDataP); typedef void (*ServerEventCallback_t)(void); /**< independent of any particular attribute */ typedef void (*ServerEventCallbackWithCount_t)(unsigned count); /**< independent of any particular attribute */ void setOnDataSent(ServerEventCallbackWithCount_t callback) { onDataSent = callback; } - void setOnDataWritten(WriteEventCallback_t callback) { - onDataWritten = callback; + void setOnDataWritten(void (*callback)(const GattCharacteristicWriteCBParams *eventDataP)) { + onDataWritten.add(callback); + } + template <typename T> + void setOnDataWritten(T *objPtr, void (T::*memberPtr)(const GattCharacteristicWriteCBParams *context)) { + onDataWritten.add(objPtr, memberPtr); } void setOnUpdatesEnabled(EventCallback_t callback) { onUpdatesEnabled = callback; @@ -64,9 +68,9 @@ onConfirmationReceived = callback; } - void handleDataWrittenEvent(uint16_t charHandle, const GattCharacteristicWriteCBParams *params) { - if (onDataWritten) { - onDataWritten(charHandle, params); + void handleDataWrittenEvent(const GattCharacteristicWriteCBParams *params) { + if (onDataWritten.hasCallbacksAttached()) { + onDataWritten.call(params); } } @@ -97,7 +101,7 @@ } protected: - GattServer() : serviceCount(0), characteristicCount(0), onDataSent(NULL), onDataWritten(NULL), onUpdatesEnabled(NULL), onUpdatesDisabled(NULL), onConfirmationReceived(NULL) { + GattServer() : serviceCount(0), characteristicCount(0), onDataSent(NULL), onDataWritten(), onUpdatesEnabled(NULL), onUpdatesDisabled(NULL), onConfirmationReceived(NULL) { /* empty */ } @@ -108,7 +112,7 @@ private: ServerEventCallbackWithCount_t onDataSent; - WriteEventCallback_t onDataWritten; + CallChainOfFunctionPointersWithContext<const GattCharacteristicWriteCBParams *> onDataWritten; EventCallback_t onUpdatesEnabled; EventCallback_t onUpdatesDisabled; EventCallback_t onConfirmationReceived;