xiao sun / BLE_API

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
Rohit Grover
Date:
Thu May 22 12:11:12 2014 +0100
Parent:
34:da2ea8cd6216
Child:
36:9ec94579bb78
Commit message:
enhancing the interface for BLEDevice to absorb GAP API.
This will allow applications to avoid having to call getGAP() or
similar before operating on underlying services.

Changed in this revision

hw/BLEDevice.h Show annotated file Show diff for this revision Revisions of this file
--- a/hw/BLEDevice.h	Wed May 21 15:01:14 2014 +0100
+++ b/hw/BLEDevice.h	Thu May 22 12:11:12 2014 +0100
@@ -32,10 +32,40 @@
 class BLEDevice
 {
 public:
+    virtual ble_error_t init()        = 0;
+    virtual ble_error_t reset(void)   = 0;
+
+    /* GAP specific APIs */
+public:
+    ble_error_t setAddress(Gap::addr_type_t type, uint8_t address[6]) {
+        return getGap().setAddress(type, address);
+    }
+
+    ble_error_t setAdvertisingData(GapAdvertisingData &ADStructures,
+                                   GapAdvertisingData &scanResponse) {
+        return getGap().setAdvertisingData(ADStructures, scanResponse);
+    }
+
+    ble_error_t setAdvertisingData(GapAdvertisingData &ADStructures) {
+        GapAdvertisingData scanResponse;
+        return getGap().setAdvertisingData(ADStructures, scanResponse);
+    }
+
+    ble_error_t startAdvertising(GapAdvertisingParams &advParams) {
+        return getGap().startAdvertising(advParams);
+    }
+
+    ble_error_t stopAdvertising(void) {
+        return getGap().stopAdvertising();
+    }
+
+    ble_error_t disconnect(void) {
+        return getGap().disconnect();
+    }
+
+public: /* TODO: to be made private soon */
     virtual Gap&        getGap()        = 0;
     virtual GattServer& getGattServer() = 0;
-    virtual ble_error_t   init()        = 0;
-    virtual ble_error_t   reset(void)   = 0;
 };
 
 #endif // ifndef __BLE_DEVICE_H__