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: ble/BLE.h
- Revision:
- 882:a4e00d3d7bcb
- Parent:
- 881:853f1df9e30a
- Child:
- 884:37599305e7b6
diff -r 853f1df9e30a -r a4e00d3d7bcb ble/BLE.h --- a/ble/BLE.h Tue Nov 03 13:21:03 2015 +0000 +++ b/ble/BLE.h Tue Nov 03 13:21:03 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); } /**