Lancaster University's fork of the mbed BLE API. Lives on github, https://github.com/lancaster-university/BLE_API
Dependents: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Diff: ble/services/LinkLossService.h
- Revision:
- 835:6556fcb2f51d
- Parent:
- 834:44e2b14acd89
- Child:
- 837:66f14bc44c30
diff -r 44e2b14acd89 -r 6556fcb2f51d ble/services/LinkLossService.h --- a/ble/services/LinkLossService.h Mon Nov 02 09:09:03 2015 +0000 +++ b/ble/services/LinkLossService.h Mon Nov 02 09:09:03 2015 +0000 @@ -55,7 +55,7 @@ ble.addService(linkLossService); serviceAdded = true; - ble.onDisconnection(this, &LinkLossService::onDisconnectionFilter); + ble.addToDisconnectionCallChain(this, &LinkLossService::onDisconnectionFilter); ble.onDataWritten(this, &LinkLossService::onDataWritten); } @@ -86,7 +86,7 @@ } } - void onDisconnectionFilter(const Gap::DisconnectionCallbackParams_t *params) { + void onDisconnectionFilter(void) { if (alertLevel != NO_ALERT) { callback(alertLevel); }