Microbug / BLE_API_FOTA

Fork of BLE_API by Bluetooth Low Energy

Revision:
52:62b9d3b7a689
Parent:
34:da2ea8cd6216
Child:
55:8f7ca1ae50d7
diff -r 0329477be5e2 -r 62b9d3b7a689 GattCharacteristic.h
--- a/GattCharacteristic.h	Wed May 28 16:52:09 2014 +0100
+++ b/GattCharacteristic.h	Wed May 28 17:24:30 2014 +0100
@@ -413,9 +413,13 @@
                        uint16_t minLen = 1,
                        uint16_t maxLen = 1,
                        uint8_t  properties = 0);
+    GattCharacteristic(const uint8_t longUUID[UUID::LENGTH_OF_LONG_UUID],
+                       uint16_t minLen = 1,
+                       uint16_t maxLen = 1,
+                       uint8_t  properties = 0);
     virtual ~GattCharacteristic(void);
 
-    uint16_t uuid;                  /* Characteristic UUID */
+    UUID     uuid;                  /* Characteristic UUID */
     uint16_t lenMin;                /* Minimum length of the value */
     uint16_t lenMax;                /* Maximum length of the value */
     uint16_t handle;