Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Diff: hw/BLEDevice.h
- Revision:
- 35:f3b0c1192cf7
- Parent:
- 34:da2ea8cd6216
- Child:
- 36:9ec94579bb78
--- 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__
