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 Bluetooth Low Energy

Revision:
67:0fac4e99f29b
Parent:
62:3dc0dc3a0451
Child:
76:103fac6e36d1
--- a/UUID.cpp	Thu Jun 05 08:22:59 2014 +0100
+++ b/UUID.cpp	Thu Jun 05 08:48:51 2014 +0100
@@ -64,10 +64,10 @@
     @endcode
 */
 /**************************************************************************/
-UUID::UUID(const uint8_t longUUID[LENGTH_OF_LONG_UUID]) :
-                                        type(UUID_TYPE_SHORT),
-                                        baseUUID(),
-                                        shortUUID(0)
+UUID::UUID(const LongUUID_t longUUID) :
+    type(UUID_TYPE_SHORT),
+    baseUUID(),
+    shortUUID(0)
 {
     memcpy(baseUUID, longUUID, LENGTH_OF_LONG_UUID);
     shortUUID = (uint16_t)((longUUID[2] << 8) | (longUUID[3]));