BLE_API_Tiny_BLE

Dependents:   CSSE4011_BLE_IMU

Fork of BLE_API by Bluetooth Low Energy

Revision:
61:119faa0dfeee
Parent:
60:de30b62ab8c1
Child:
67:0fac4e99f29b
--- a/UUID.h	Fri May 30 09:58:35 2014 +0100
+++ b/UUID.h	Fri May 30 10:48:48 2014 +0100
@@ -32,7 +32,7 @@
 
 public:
     UUID(const uint8_t longUUID[LENGTH_OF_LONG_UUID]);
-    UUID(uint16_t      shortUUID);
+    UUID(uint16_t      uuid);
     virtual ~UUID(void);
 
 public:
@@ -43,7 +43,7 @@
         return baseUUID;
     }
     uint16_t get16BitUUID(void) const {
-        return value;
+        return shortUUID;
     }
 
 private:
@@ -53,7 +53,7 @@
                             * are zeroed out to allow comparison with other long
                             * UUIDs which differ only in the 16-bit relative
                             * part.*/
-    uint16_t value;        // 16 bit uuid (byte 2-3 using with base)
+    uint16_t shortUUID;     // 16 bit uuid (byte 2-3 using with base)
 };
 
 #endif // ifndef __UUID_H__