Devchannel Team / X_NUCLEO_IDB0XA1

Dependents:   Hello_BLE F446RE-BLE

Fork of X_NUCLEO_IDB0XA1 by ST

Revision:
53:8c10d592ca49
Parent:
52:94638d2461c1
Child:
55:0e4db6804c8d
--- a/BlueNRGGattServer.h	Thu Sep 25 08:21:49 2014 +0000
+++ b/BlueNRGGattServer.h	Tue Sep 30 14:38:48 2014 +0000
@@ -27,6 +27,7 @@
 
 #define BLE_TOTAL_CHARACTERISTICS 10
 
+
 using namespace std;
 
 class BlueNRGGattServer : public GattServer
@@ -73,6 +74,12 @@
 
     BlueNRGGattServer(BlueNRGGattServer const &);
     void operator=(BlueNRGGattServer const &);
+    
+    static const int CHAR_DESC_TYPE_16_BIT=0x01; 
+    static const int CHAR_DESC_TYPE_128_BIT=0x02;    
+    static const int CHAR_DESC_SECURITY_PERMISSION=0x00;
+    static const int CHAR_DESC_ACCESS_PERMISSION=0x03;  
+    static const int CHAR_ATTRIBUTE_LEN_IS_FIXED=0x00;        
 };
 
 #endif