Wang Xinglu / BLE_API

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Revision:
52:62b9d3b7a689
Parent:
51:0329477be5e2
Child:
67:0fac4e99f29b
--- a/GattCharacteristic.cpp	Wed May 28 16:52:09 2014 +0100
+++ b/GattCharacteristic.cpp	Wed May 28 17:24:30 2014 +0100
@@ -58,6 +58,18 @@
 {
     /* empty */
 }
+GattCharacteristic::GattCharacteristic(const uint8_t longUUID[UUID::LENGTH_OF_LONG_UUID],
+                                       uint16_t      minLen,
+                                       uint16_t      maxLen,
+                                       uint8_t       props) :
+    uuid(longUUID),
+    lenMin(minLen),
+    lenMax(maxLen),
+    handle(),
+    properties(props)
+{
+    /* empty */
+}
 
 /**************************************************************************/
 /*!