High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
README.md@948:1bb402105289, 2015-11-26 (annotated)
- Committer:
- rgrover1
- Date:
- Thu Nov 26 12:52:08 2015 +0000
- Revision:
- 948:1bb402105289
- Parent:
- 947:f3fcaea7d005
- Child:
- 949:1902cbd0dd83
Synchronized with git rev 184d29c3
Author: Vincent Coubard
Various enhancement:
Add SafeBool class which allow to easily declare a safe bool operator in
c++03.
CallChainOfFunctionPointerswithContext:
- unify syntax of add
- detach function now return true if a function has been detached and
false otherwise
- Explanations about function call operator
- use safe bool idiom
- explanations about iterator and why it is mutable
FunctionPointerWithContext:
- fix call propagation
- use safe bool idiom
Gap:
- add documentation
- onRadioNotification does mot call initRadioNotification anymore
GattClient:
- documentation
GattServer:
- documentation
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 125:aae3f50670c9 | 1 | # mbed Bluetooth Low Energy Stack |
rgrover1 | 947:f3fcaea7d005 | 2 | This is the github repo for the BLE_API used by developer.mbed.org. Please see [mbed BLE Homepage](http://developer.mbed.org/teams/Bluetooth-Low-Energy/) for all documentation, code examples and general help. |
rgrover1 | 125:aae3f50670c9 | 3 | |
rgrover1 | 125:aae3f50670c9 | 4 | # Supported Services |
rgrover1 | 947:f3fcaea7d005 | 5 | Supported GATT services and constantly being added and can be found in the /services folder. |
rgrover1 | 947:f3fcaea7d005 | 6 | Currently supported services include: |
rgrover1 | 947:f3fcaea7d005 | 7 | * Battery |
rgrover1 | 125:aae3f50670c9 | 8 | * Device Firmware Update (DFU) |
rgrover1 | 947:f3fcaea7d005 | 9 | * Device Information |
rgrover1 | 125:aae3f50670c9 | 10 | * Health Thermometer |
rgrover1 | 125:aae3f50670c9 | 11 | * Heart Rate |
rgrover1 | 125:aae3f50670c9 | 12 | * UART |
Rohit Grover |
241:00f2410ad9cc | 13 | * UriBeacon |
Rohit Grover |
241:00f2410ad9cc | 14 | * iBeacon |
rgrover1 | 125:aae3f50670c9 | 15 | |
rgrover1 | 947:f3fcaea7d005 | 16 | # Getting Started |
rgrover1 | 947:f3fcaea7d005 | 17 | The mbed BLE API is meant to be used in projects on developer.mbed.org. Please see examples and sample project files there. |
rgrover1 | 125:aae3f50670c9 | 18 | A good starting point are these pages: |
rgrover1 | 947:f3fcaea7d005 | 19 | * [mbed BLE Homepage](http://developer.mbed.org/teams/Bluetooth-Low-Energy/) for all things BLE |
rgrover1 | 947:f3fcaea7d005 | 20 | * [mbed BLE Getting Started Guide](http://developer.mbed.org/forum/team-63-Bluetooth-Low-Energy-community/topic/5262/) a wonderful primer on using BLE with mbed |
rgrover1 | 947:f3fcaea7d005 | 21 | * [mbed BLE API page](http://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/docs/tip/) for the API in generated by doxygen |