BLE_API

Revision:
1179:4ab722f8dca0
Parent:
1169:39f9a7bdf0a5
Child:
1183:1589830dbdb7
--- a/ble/ServiceDiscovery.h	Wed Apr 06 19:15:28 2016 +0100
+++ b/ble/ServiceDiscovery.h	Wed Apr 06 19:15:30 2016 +0100
@@ -117,7 +117,7 @@
                                const UUID               &matchingCharacteristicUUIDIn = UUID::ShortUUIDBytes_t(BLE_UUID_UNKNOWN)) = 0;
 
     /**
-     * Check whether service-discovery is currently active.
+     * Is service-discovery currently active?
      */
     virtual bool        isActive(void) const = 0;
 
@@ -154,30 +154,11 @@
     }
 
 protected:
-    /**
-     * Connection handle as provided by the SoftDevice.
-     */
-    Gap::Handle_t            connHandle;
-    /**
-     * UUID-based filter that specifies the service that the application is
-     * interested in.
-     */
+    Gap::Handle_t            connHandle; /**< Connection handle as provided by the SoftDevice. */
     UUID                     matchingServiceUUID;
-    /**
-     * The registered callback handle for when a matching service is found
-     * during service-discovery.
-     */
     ServiceCallback_t        serviceCallback;
-    /**
-     * UUID-based filter that specifies the characteristic that the
-     * application is interested in.
-     */
     UUID                     matchingCharacteristicUUID;
-    /**
-     * The registered callback handler for when a matching characteristic is
-     * found during service-discovery.
-     */
     CharacteristicCallback_t characteristicCallback;
 };
 
-#endif /* ifndef __SERVICE_DISOVERY_H__ */
\ No newline at end of file
+#endif // ifndef __SERVICE_DISOVERY_H__
\ No newline at end of file