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.
Diff: ble/BLE.h
- Revision:
- 887:fed45b77c90c
- Parent:
- 886:0a45c67b2301
- Child:
- 888:e43584ccdf03
diff -r 0a45c67b2301 -r fed45b77c90c ble/BLE.h
--- a/ble/BLE.h Thu Nov 26 12:51:59 2015 +0000
+++ b/ble/BLE.h Thu Nov 26 12:51:59 2015 +0000
@@ -104,7 +104,7 @@
*/
ble_error_t init(InitializationCompleteCallback_t initCompleteCallback = NULL) {
FunctionPointerWithContext<InitializationCompleteCallbackContext *> callback(initCompleteCallback);
- initImplementation(callback);
+ return initImplementation(callback);
}
/**
@@ -114,7 +114,7 @@
template<typename T>
ble_error_t init(T *object, void (T::*initCompleteCallback)(InitializationCompleteCallbackContext *context)) {
FunctionPointerWithContext<InitializationCompleteCallbackContext *> callback(object, initCompleteCallback);
- initImplementation(callback);
+ return initImplementation(callback);
}
/**