File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,8 @@ class iBeacon {
176
176
len (0x15 ),
177
177
majorNumber (__REV16 (majNum)),
178
178
minorNumber (__REV16 (minNum)),
179
- txPower (transmitPower) {
179
+ txPower (transmitPower)
180
+ {
180
181
memcpy (proximityUUID, uuid, sizeof (LocationUUID_t));
181
182
}
182
183
};
@@ -191,7 +192,7 @@ class iBeacon {
191
192
* to group their iBeacons into a single network, a single region and
192
193
* identify their organization among others.
193
194
*
194
- * @param[in] majNum Beacon major group ID. iBeacon users may use
195
+ * @param[in] majNum Beacon major group ID. iBeacon fleet operators may use
195
196
* this field to divide the region into subregions, and their network into
196
197
* subnetworks.
197
198
*
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ namespace mbed {
35
35
*/
36
36
class BufferedBlockDevice : public BlockDevice {
37
37
public:
38
- /* * Create a memory-buffered block device wrapping an underlying block device
38
+ /* * Lifetime of a memory-buffered block device wrapping an underlying block device
39
39
*
40
40
* @param bd Block device to back the BufferedBlockDevice
41
41
*/
42
42
BufferedBlockDevice (BlockDevice *bd);
43
43
44
- /* * Destroy the memory-buffered block device
44
+ /* * Lifetime of the memory-buffered block device
45
45
*/
46
46
virtual ~BufferedBlockDevice ();
47
47
You can’t perform that action at this time.
0 commit comments