Nordic stack and drivers for the mbed BLE API

Fork of nRF51822 by Nordic Semiconductor

Files at this revision

API Documentation at this revision

Comitter:
Rohit Grover
Date:
Fri Jun 27 13:53:59 2014 +0100
Parent:
33:8efbbf54b66f
Child:
35:7174913c9d67
Commit message:
remove comment headers in some cases; minor fixes to comments

Changed in this revision

btle/btle.cpp Show annotated file Show diff for this revision Revisions of this file
nRF51GattServer.cpp Show annotated file Show diff for this revision Revisions of this file
nRF51GattServer.h Show annotated file Show diff for this revision Revisions of this file
--- a/btle/btle.cpp	Thu Jun 26 14:58:41 2014 +0100
+++ b/btle/btle.cpp	Fri Jun 27 13:53:59 2014 +0100
@@ -50,11 +50,6 @@
 
 static void btle_handler(ble_evt_t *p_ble_evt);
 
-/**************************************************************************/
-/*!
-
-*/
-/**************************************************************************/
 static void sys_evt_dispatch(uint32_t sys_evt)
 {
 #if NEED_PSTORAGE /* disabled by default */
@@ -62,13 +57,6 @@
 #endif
 }
 
-/**************************************************************************/
-/*!
-    @brief      Initialises BTLE and the underlying HW/SoftDevice
-
-    @returns
-*/
-/**************************************************************************/
 error_t btle_init(void)
 {
     APP_TIMER_INIT(0, 8, 5, false);
@@ -85,15 +73,6 @@
     return ERROR_NONE;
 }
 
-/**************************************************************************/
-/*!
-    @brief
-
-    @param[in]  p_ble_evt
-
-    @returns
-*/
-/**************************************************************************/
 static void btle_handler(ble_evt_t *p_ble_evt)
 {
     /* Library service handlers */
--- a/nRF51GattServer.cpp	Thu Jun 26 14:58:41 2014 +0100
+++ b/nRF51GattServer.cpp	Fri Jun 27 13:53:59 2014 +0100
@@ -234,8 +234,7 @@
                 }
             }
 
-            /* 2.) Changes to the characteristic value will be handled with other
-             * events below */
+            /* 2.) Changes to the characteristic value will be handled with other events below */
             event = GattServerEvents::GATT_EVENT_DATA_WRITTEN;
             break;
 
--- a/nRF51GattServer.h	Thu Jun 26 14:58:41 2014 +0100
+++ b/nRF51GattServer.h	Fri Jun 27 13:53:59 2014 +0100
@@ -25,12 +25,6 @@
 
 #define BLE_TOTAL_CHARACTERISTICS 10
 
-/**************************************************************************/
-/*!
-    \brief
-
-*/
-/**************************************************************************/
 class nRF51GattServer : public GattServer
 {
 public: