High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Diff: hw/GattServerEvents.h
- Revision:
- 97:a412356d9f49
- Parent:
- 77:1436ecf09583
--- 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; /******************************************************************/