32
32
/* *
33
33
* Representation of a GATT service discovered.
34
34
*
35
- * GATT Services are discovered on distant GATT servers by the discovery
36
- * procedure which can be initiated by calling
35
+ * The discovery procedure discovers GATT Services are discovered on distant
36
+ * GATT servers, which can be initiated by calling
37
37
* GattClient::launchServiceDiscovery() or GattClient::discoverServices(). The
38
- * discovery process will pass instances of this class to the callback handling
38
+ * discovery process passes instances of this class to the callback handling
39
39
* service discovered.
40
40
*
41
41
* Discovered services are characterized by the UUID of the service discovered
42
42
* and the range of the GATT attributes belonging to the service.
43
43
*
44
44
* The UUID can be queried by calling getUUID() while the begining of the
45
- * attribute range can be obtained via getStartHandle() and the end of the
45
+ * attribute range can be obtained through getStartHandle() and the end of the
46
46
* attribute range with a call to getEndHandle().
47
47
*
48
48
* The characteristics composing the service may be discovered by the function
@@ -84,8 +84,8 @@ class DiscoveredService {
84
84
/* *
85
85
* Construct a DiscoveredService instance.
86
86
*
87
- * @important This API is not meant to be used publicly it is meant to be
88
- * used by internal APIs of mbed BLE.
87
+ * @important This API is not meant to be used publicly. It is meant to be
88
+ * used by internal APIs of Mbed BLE.
89
89
*/
90
90
DiscoveredService () :
91
91
uuid (UUID::ShortUUIDBytes_t(0 )),
@@ -96,8 +96,8 @@ class DiscoveredService {
96
96
/* *
97
97
* Set information about the discovered service.
98
98
*
99
- * @important This API is not meant to be used publicly it is meant to be
100
- * used by internal APIs of mbed BLE.
99
+ * @important This API is not meant to be used publicly. It is meant to be
100
+ * used by internal APIs of Mbed BLE.
101
101
*
102
102
* @param[in] uuidIn The UUID of the discovered service.
103
103
* @param[in] startHandleIn The start handle of the discovered service in
@@ -118,8 +118,8 @@ class DiscoveredService {
118
118
/* *
119
119
* Set the start and end handle of the discovered service.
120
120
*
121
- * @important This API is not meant to be used publicly it is meant to be
122
- * used by internal APIs of mbed BLE.
121
+ * @important This API is not meant to be used publicly. It is meant to be
122
+ * used by internal APIs of Mbed BLE.
123
123
*
124
124
* @param[in] startHandleIn The start handle of the discovered service in
125
125
* the peer's GATT server.
@@ -137,8 +137,8 @@ class DiscoveredService {
137
137
/* *
138
138
* Set the long UUID of the discovered service.
139
139
*
140
- * @important This API is not meant to be used publicly it is meant to be
141
- * used by internal APIs of mbed BLE.
140
+ * @important This API is not meant to be used publicly. It is meant to be
141
+ * used by internal APIs of Mbed BLE.
142
142
*
143
143
* @param[in] longUUID The bytes composing the long UUID of this discovered
144
144
* service.
0 commit comments