High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Revision 97:a412356d9f49, committed 2014-07-02
- Comitter:
- Rohit Grover
- Date:
- Wed Jul 02 09:08:48 2014 +0100
- Parent:
- 96:6f4c8e545d38
- Child:
- 98:d751acb2543f
- Commit message:
- undoing the negative effects of a previous use of uncrustify
Changed in this revision
hw/GattServerEvents.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/hw/GattServerEvents.h Thu Jun 19 14:09:37 2014 +0100 +++ b/hw/GattServerEvents.h Wed Jul 02 09:08:48 2014 +0100 @@ -38,19 +38,11 @@ */ /******************************************************************/ typedef enum gattEvent_e { - GATT_EVENT_DATA_SENT = 1, /**< Fired when a msg was - *successfully sent out - *(notify only?) */ - GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to - *Server (separate into - *char and descriptor - *writes?) */ - GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate - *Enabled in CCCD */ - GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate - *Disabled in CCCD */ - GATT_EVENT_CONFIRMATION_RECEIVED = 5 /**< Response received - *from Indicate message */ + GATT_EVENT_DATA_SENT = 1, /**< Fired when a msg was successfully sent out (notify only?) */ + GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to Server (separate into char and descriptor writes?) */ + GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate Enabled in CCCD */ + GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate Disabled in CCCD */ + GATT_EVENT_CONFIRMATION_RECEIVED = 5 /**< Response received from Indicate message */ } gattEvent_t; /******************************************************************/