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:08 2015 +0100
Parent:
537:00d5affbb2b2
Child:
539:0b6e82025358
Commit message:
Synchronized with git rev 42aaf6bb
Author: Rohit Grover
add BLE::gattServer()

Changed in this revision

common/BLEInstanceBase.h Show annotated file Show diff for this revision Revisions of this file
public/BLE.h Show annotated file Show diff for this revision Revisions of this file
--- a/common/BLEInstanceBase.h	Fri Jun 19 15:52:08 2015 +0100
+++ b/common/BLEInstanceBase.h	Fri Jun 19 15:52:08 2015 +0100
@@ -30,13 +30,14 @@
 class BLEInstanceBase
 {
 public:
-    virtual ble_error_t init(void)                 = 0;
-    virtual ble_error_t shutdown(void)             = 0;
-    virtual const char *getVersion(void)           = 0;
-    virtual Gap&        getGap()                   = 0;
-    virtual const Gap&  getGap() const             = 0;
-    virtual GattServer& getGattServer()            = 0;
-    virtual GattClient& getGattClient()            = 0;
+    virtual ble_error_t init(void)                  = 0;
+    virtual ble_error_t shutdown(void)              = 0;
+    virtual const char *getVersion(void)            = 0;
+    virtual Gap&        getGap()                    = 0;
+    virtual const Gap&  getGap() const              = 0;
+    virtual GattServer& getGattServer()             = 0;
+    virtual const GattServer& getGattServer() const = 0;
+    virtual GattClient& getGattClient()             = 0;
     virtual ble_error_t initializeSecurity(bool                          enableBonding = true,
                                            bool                          requireMITM   = true,
                                            Gap::SecurityIOCapabilities_t iocaps        = Gap::IO_CAPS_NONE,
--- a/public/BLE.h	Fri Jun 19 15:52:08 2015 +0100
+++ b/public/BLE.h	Fri Jun 19 15:52:08 2015 +0100
@@ -74,6 +74,17 @@
         return transport->getGap();
     }
 
+    /*
+     * Accessors to GATT Server. Please refer to GattServer.h. All GATTServer related
+     * functionality requires going through this accessor.
+     */
+    const GattServer& gattServer() const {
+        return transport->getGattServer();
+    }
+    GattServer& gattServer() {
+        return transport->getGattServer();
+    }
+
     /**
      * Yield control to the BLE stack or to other tasks waiting for events. This
      * is a sleep function which will return when there is an application