High level Bluetooth Low Energy API and radio abstraction layer

Dependents:   BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more

Overview

The BLE_API is a high level abstraction for using Bluetooth Low Energy on multiple platforms. For details and examples using the BLE_API please see the BLE_API Summary Page. Or click on the API Documentation tab above.

Supported Services

Supported services can be found in the BLE_API/services folder.

Revision:
1179:4ab722f8dca0
Parent:
1166:5f89f53f3f7b
Child:
1183:1589830dbdb7
--- a/ble/GattServerEvents.h	Wed Apr 06 19:15:28 2016 +0100
+++ b/ble/GattServerEvents.h	Wed Apr 06 19:15:30 2016 +0100
@@ -17,16 +17,14 @@
 #ifndef __GATT_SERVER_EVENTS_H__
 #define __GATT_SERVER_EVENTS_H__
 
-/**
- *  @brief The base class used to abstract away the callback events that can be
- *         triggered with the GATT Server.
- */
+/*!
+    \brief
+    The base class used to abstract away the callback events that can be
+    triggered with the GATT Server.
+*/
 class GattServerEvents
 {
 public:
-    /**
-     * Enumeration for GattServer events.
-     */
     typedef enum gattEvent_e {
         GATT_EVENT_DATA_SENT               = 1,  /**< Fired when a message was successfully sent out (notify only?) */
         GATT_EVENT_DATA_WRITTEN            = 2,  /**< Client wrote data to the server (separate into char and descriptor writes?) */
@@ -38,4 +36,4 @@
     } gattEvent_t;
 };
 
-#endif /* ifndef __GATT_SERVER_EVENTS_H__ */
\ No newline at end of file
+#endif // ifndef __GATT_SERVER_EVENTS_H__
\ No newline at end of file