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:
- 863:4f8e12333453
- Parent:
- 861:2afa79e3ed0a
- Child:
- 890:f3144091ae19
diff -r d4be8c0b9ab3 -r 4f8e12333453 ble/services/LinkLossService.h --- a/ble/services/LinkLossService.h Mon Nov 02 09:09:07 2015 +0000 +++ b/ble/services/LinkLossService.h Mon Nov 02 09:09:07 2015 +0000 @@ -52,11 +52,11 @@ GattCharacteristic *charTable[] = {&alertLevelChar}; GattService linkLossService(GattService::UUID_LINK_LOSS_SERVICE, charTable, sizeof(charTable) / sizeof(GattCharacteristic *)); - ble.addService(linkLossService); + ble.gattServer().addService(linkLossService); serviceAdded = true; - ble.onDisconnection(this, &LinkLossService::onDisconnectionFilter); - ble.onDataWritten(this, &LinkLossService::onDataWritten); + ble.gap().onDisconnection(this, &LinkLossService::onDisconnectionFilter); + ble.gattServer().onDataWritten(this, &LinkLossService::onDataWritten); } /**