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.
Dependents: LinkNode_SimpleChatwithSerial
Fork of BLE_API by
Diff: ble/BLEInstanceBase.h
- Revision:
- 858:38a4963a455e
- Parent:
- 857:7f578be2d01d
- Child:
- 860:0d41e4eb3d0a
--- a/ble/BLEInstanceBase.h Mon Nov 02 09:09:06 2015 +0000
+++ b/ble/BLEInstanceBase.h Mon Nov 02 09:09:07 2015 +0000
@@ -19,6 +19,7 @@
#include "Gap.h"
#include "ble/SecurityManager.h"
+#include "ble/BLE.h"
/* forward declarations */
class GattServer;
@@ -31,17 +32,18 @@
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 const GattServer& getGattServer() const = 0;
- virtual GattClient& getGattClient() = 0;
- virtual SecurityManager& getSecurityManager() = 0;
+ virtual ble_error_t init(BLE::InstanceID_t instanceID, BLE::InitializationCompleteCallback_t) = 0;
+ virtual bool hasInitialized(void) const = 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 SecurityManager& getSecurityManager() = 0;
virtual const SecurityManager& getSecurityManager() const = 0;
- virtual void waitForEvent(void) = 0;
+ virtual void waitForEvent(void) = 0;
};
/**
