undoing the negative effects of a previous use of uncrustify

master
Rohit Grover 2014-07-02 09:08:48 +01:00
parent a0b9857682
commit 46ec9f1365
1 changed files with 5 additions and 13 deletions

View File

@ -38,19 +38,11 @@ public:
*/
/******************************************************************/
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;
/******************************************************************/