
A simple demo that directly uses BLE library to define service and characteristics
Dependencies: BLE_API mbed nRF51822
Fork of BLE_HeartRate by
Revision 35:ba3e3174331a, committed 2014-07-11
- Comitter:
- Rohit Grover
- Date:
- Fri Jul 11 11:07:25 2014 +0100
- Parent:
- 34:44dc6efc0b50
- Child:
- 36:ea2a1b4f51c1
- Commit message:
- disconnectionCallback now takes a handle
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Jul 08 11:19:52 2014 +0100 +++ b/main.cpp Fri Jul 11 11:07:25 2014 +0100 @@ -50,9 +50,9 @@ static const uint16_t uuid16_list[] = {GattService::UUID_HEART_RATE_SERVICE}; -void disconnectionCallback(void) +void disconnectionCallback(Gap::Handle_t handle) { - DEBUG("Disconnected!\n\r"); + DEBUG("Disconnected handle %u!\n\r", handle); DEBUG("Restarting the advertising process\n\r"); ble.startAdvertising(); }