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
Diff: ble/GapEvents.h
- Revision:
- 899:528b6c1b53ff
- Parent:
- 716:11b41f651697
- Child:
- 906:8ddab3271c2f
diff -r 319202fb0824 -r 528b6c1b53ff ble/GapEvents.h --- 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; };