add "LE Device Address" 0x1B to advertising data types

Fork of BLE_API by Bluetooth Low Energy

Committer:
rgrover1
Date:
Wed Dec 02 10:29:44 2015 +0000
Revision:
993:4d62b7967c11
Parent:
992:ca834f7ae8ed
Child:
995:287604cca609
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?

UserRevisionLine numberNew contents of line
rgrover1 125:aae3f50670c9 1 # mbed Bluetooth Low Energy Stack
rgrover1 993:4d62b7967c11 2 This is the Github repo for the `BLE_API` used by developer.mbed.org. Please see the [mbed BLE Homepage](https://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 993:4d62b7967c11 5 Supported GATT services and constantly being added and can be found in the [ble/services/](https://github.com/ARMmbed/ble/tree/master/ble/services) folder.
rgrover1 993:4d62b7967c11 6
rgrover1 993:4d62b7967c11 7 Currently supported services include:
rgrover1 993:4d62b7967c11 8 * Battery
rgrover1 125:aae3f50670c9 9 * Device Firmware Update (DFU)
rgrover1 993:4d62b7967c11 10 * Device Information
rgrover1 993:4d62b7967c11 11 * Eddystone Configuration Service
rgrover1 125:aae3f50670c9 12 * Health Thermometer
rgrover1 125:aae3f50670c9 13 * Heart Rate
rgrover1 993:4d62b7967c11 14 * Link Loss
rgrover1 125:aae3f50670c9 15 * UART
Rohit Grover 241:00f2410ad9cc 16 * UriBeacon
Rohit Grover 241:00f2410ad9cc 17 * iBeacon
rgrover1 125:aae3f50670c9 18
rgrover1 993:4d62b7967c11 19 # Getting Started
rgrover1 993:4d62b7967c11 20 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 21 A good starting point are these pages:
rgrover1 993:4d62b7967c11 22 * [mbed BLE Homepage](https://developer.mbed.org/teams/Bluetooth-Low-Energy/) for all things BLE
rgrover1 993:4d62b7967c11 23 * [mbed BLE Getting Started Guide](https://developer.mbed.org/forum/team-63-Bluetooth-Low-Energy-community/topic/5262/) a wonderful primer on using BLE with mbed
rgrover1 993:4d62b7967c11 24 * [mbed BLE doc](https://docs.mbed.com/docs/ble-intros/en/latest/) for an introduction to mbed BLE
rgrover1 993:4d62b7967c11 25 * [mbed BLE API page](https://developer.mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/docs/tip/) for the API in generated by doxygen