Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
DOXYGEN_FRONTPAGE.md@993:4d62b7967c11, 2015-12-02 (annotated)
- Committer:
- rgrover1
- Date:
- Wed Dec 02 10:29:44 2015 +0000
- Revision:
- 993:4d62b7967c11
- Parent:
- 980:07ce7d9ed5ff
- Child:
- 1027:49ec5900eab7
Synchronized with git rev 12e27cd4
Author: Rohit Grover
Release 2.1.3
=============
* Improvements to CallChainOfFunctionPointerswithContext:
- add a `detach` function to be able to remove callbacks.
- detach function now return true if a function has been detached and
false otherwise.
- add a function call operator.
- use safe-bool idiom. see : http://www.artima.com/cppsource/safebool.html
* Add SafeBool class which allow to easily declare a safe bool operator in
c++03.
* Improvements to FunctionPointerWithContext:
- fix call propagation
- use safe bool idiom
* Add config file for generating Doxygen.
* Setup for onRadioNotification callback does not call initRadioNotification
anymore.
* GapAdvertisementData now handles replacement and appending of data fields
based on type. Some fields can be replaced with new values, and others
require the payload to be appended.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 980:07ce7d9ed5ff | 1 | # BLE API {#mainpage} |
rgrover1 | 980:07ce7d9ed5ff | 2 | |
rgrover1 | 980:07ce7d9ed5ff | 3 | The BLE module within mbed OS offers a high abstraction level for using |
rgrover1 | 980:07ce7d9ed5ff | 4 | Bluetooth Low Energy on multiple platforms. |
rgrover1 | 980:07ce7d9ed5ff | 5 | |
rgrover1 | 980:07ce7d9ed5ff | 6 | This documentation describes the internal structure of the mbed |
rgrover1 | 980:07ce7d9ed5ff | 7 | [BLE API](https://github.com/armmbed/ble). It was automatically generated from |
rgrover1 | 980:07ce7d9ed5ff | 8 | specially formatted comment blocks in BLE API's source code using Doxygen (see http://www.stack.nl/~dimitri/doxygen/ for more information on Doxygen). |
rgrover1 | 980:07ce7d9ed5ff | 9 | |
rgrover1 | 980:07ce7d9ed5ff | 10 | For getting started with BLE on mbed, check our [introduction |
rgrover1 | 980:07ce7d9ed5ff | 11 | page](https://docs.mbed.com/docs/ble-intros/en/latest/). |
rgrover1 | 980:07ce7d9ed5ff | 12 | |
rgrover1 | 980:07ce7d9ed5ff | 13 | For mbed OS examples using BLE, check [this |
rgrover1 | 980:07ce7d9ed5ff | 14 | repository](https://github.com/armmbed/ble-examples). For mbed-classic |
rgrover1 | 980:07ce7d9ed5ff | 15 | examples, please refer to [code under mbed.org](https://developer.mbed.org/teams/Bluetooth-Low-Energy/code/). |
rgrover1 | 980:07ce7d9ed5ff | 16 | |
rgrover1 | 980:07ce7d9ed5ff | 17 | ## Supported Services |
rgrover1 | 980:07ce7d9ed5ff | 18 | |
rgrover1 | 980:07ce7d9ed5ff | 19 | Currently supported reference services include: |
rgrover1 | 980:07ce7d9ed5ff | 20 | |
rgrover1 | 980:07ce7d9ed5ff | 21 | * [Battery](@ref BatteryService) |
rgrover1 | 980:07ce7d9ed5ff | 22 | * [Device Firmware Update (DFU)](@ref DFUService) |
rgrover1 | 980:07ce7d9ed5ff | 23 | * [Device Information](@ref DeviceInformationService) |
rgrover1 | 980:07ce7d9ed5ff | 24 | * [Health Thermometer](@ref HealthThermometerService) |
rgrover1 | 980:07ce7d9ed5ff | 25 | * [Heart Rate](@ref HeartRateService) |
rgrover1 | 980:07ce7d9ed5ff | 26 | * [UART](@ref UARTService) |
rgrover1 | 980:07ce7d9ed5ff | 27 | * [UriBeacon](@ref URIBeaconConfigService) |
rgrover1 | 980:07ce7d9ed5ff | 28 | * [iBeacon](@ref iBeacon) |
rgrover1 | 980:07ce7d9ed5ff | 29 | |
rgrover1 | 980:07ce7d9ed5ff | 30 | The [documentation](https://docs.mbed.com/docs/ble-intros/en/latest/AdvSamples/Overview/) |
rgrover1 | 980:07ce7d9ed5ff | 31 | contains an overview on how to create new, application-specific services. |