High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri Jun 19 15:52:51 2015 +0100
Parent:
584:ac9f89a85d28
Child:
586:56b55dad625c
Commit message:
Synchronized with git rev f3040fa0
Author: Rohit Grover
turn DiscoveredCharacteristic() into a class.

Changed in this revision

public/ServiceDiscovery.h Show annotated file Show diff for this revision Revisions of this file
--- a/public/ServiceDiscovery.h	Fri Jun 19 15:52:50 2015 +0100
+++ b/public/ServiceDiscovery.h	Fri Jun 19 15:52:51 2015 +0100
@@ -63,7 +63,8 @@
     /**@brief Structure for holding information about the service and the characteristics found during
      *        the discovery process.
      */
-    struct DiscoveredCharacteristic {
+    class DiscoveredCharacteristic {
+    public:
         struct Properties_t {
             static const uint8_t BROADCAST_PROPERTY_MASK         = 0x01;
             static const uint8_t READ_PROPERTY_MASK              = 0x02;
@@ -104,6 +105,28 @@
             valueHandle = valueHandleIn;
         }
 
+    public:
+        const ShortUUIDBytes_t& getShortUUID(void) const {
+            return uuid;
+        }
+
+        const Properties_t& getProperties(void) const {
+            return props;
+        }
+
+        const GattAttribute::Handle_t& getDeclHandle(void) const {
+            return declHandle;
+        }
+        const GattAttribute::Handle_t& getValueHandle(void) const {
+            return valueHandle;
+        }
+
+    public:
+        DiscoveredCharacteristic() : uuid(0), props(), declHandle(GattAttribute::INVALID_HANDLE), valueHandle(GattAttribute::INVALID_HANDLE) {
+            /* empty */
+        }
+
+    private:
         ShortUUIDBytes_t        uuid;
         Properties_t            props;
         GattAttribute::Handle_t declHandle;