add "LE Device Address" 0x1B to advertising data types
Fork of BLE_API by
Revision 899:528b6c1b53ff, committed 2015-11-26
- Comitter:
- rgrover1
- Date:
- Thu Nov 26 12:52:01 2015 +0000
- Parent:
- 898:319202fb0824
- Child:
- 900:1e6785897fbd
- Commit message:
- Synchronized with git rev dfb4bacd
Author: Irit Arkin
New version
Based on the main repo's master version, with edits to the API.
Changed in this revision
ble/GapEvents.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/GapEvents.h Thu Nov 26 12:52:01 2015 +0000 +++ b/ble/GapEvents.h Thu Nov 26 12:52:01 2015 +0000 @@ -33,13 +33,13 @@ /*! \brief Identifies GAP events generated by the radio HW when an event - callback occurs + callback occurs. */ /******************************************************************/ typedef enum gapEvent_e { - GAP_EVENT_TIMEOUT = 1, /**< Advertising timed out before a connection was established */ - GAP_EVENT_CONNECTED = 2, /**< A connection was established with a central device */ - GAP_EVENT_DISCONNECTED = 3 /**< A connection was closed or lost with a central device */ + GAP_EVENT_TIMEOUT = 1, /**< Advertising timed out before a connection could be established. */ + GAP_EVENT_CONNECTED = 2, /**< A connection was established with a central device. */ + GAP_EVENT_DISCONNECTED = 3 /**< A connection was closed or lost with a central device. */ } gapEvent_t; };