Previous version which works for my stm32f401 Nucleo board

Fork of X_NUCLEO_IDB0XA1 by ST

Revision:
66:8c8813dd8e79
Parent:
64:6d7b775c3f6d
Child:
67:23f9772ef7bf
--- 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);
+}
+
+    
+