Merge branch 'develop'
This commit is contained in:
commit
6ce2094ea8
2 changed files with 3 additions and 3 deletions
|
@ -104,7 +104,7 @@ public:
|
|||
*/
|
||||
ble_error_t init(InitializationCompleteCallback_t initCompleteCallback = NULL) {
|
||||
FunctionPointerWithContext<InitializationCompleteCallbackContext *> callback(initCompleteCallback);
|
||||
initImplementation(callback);
|
||||
return initImplementation(callback);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -114,7 +114,7 @@ public:
|
|||
template<typename T>
|
||||
ble_error_t init(T *object, void (T::*initCompleteCallback)(InitializationCompleteCallbackContext *context)) {
|
||||
FunctionPointerWithContext<InitializationCompleteCallbackContext *> callback(object, initCompleteCallback);
|
||||
initImplementation(callback);
|
||||
return initImplementation(callback);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ble",
|
||||
"version": "2.0.2",
|
||||
"version": "2.0.3",
|
||||
"description": "The BLE module offers a high level abstraction for using Bluetooth Low Energy on multiple platforms.",
|
||||
"keywords": [
|
||||
"Bluetooth",
|
||||
|
|
Loading…
Reference in a new issue