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:
1183:1589830dbdb7
Parent:
1179:4ab722f8dca0
--- a/ble/GattServerEvents.h	Wed Apr 06 19:15:34 2016 +0100
+++ b/ble/GattServerEvents.h	Wed Apr 06 19:15:36 2016 +0100
@@ -17,14 +17,16 @@
 #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?) */
@@ -36,4 +38,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