mirror of https://github.com/ARMmbed/mbed-os.git
Review updates
parent
61926092a2
commit
b21576c8cf
|
@ -176,7 +176,8 @@ public:
|
||||||
len(0x15),
|
len(0x15),
|
||||||
majorNumber(__REV16(majNum)),
|
majorNumber(__REV16(majNum)),
|
||||||
minorNumber(__REV16(minNum)),
|
minorNumber(__REV16(minNum)),
|
||||||
txPower(transmitPower) {
|
txPower(transmitPower)
|
||||||
|
{
|
||||||
memcpy(proximityUUID, uuid, sizeof(LocationUUID_t));
|
memcpy(proximityUUID, uuid, sizeof(LocationUUID_t));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -191,7 +192,7 @@ public:
|
||||||
* to group their iBeacons into a single network, a single region and
|
* to group their iBeacons into a single network, a single region and
|
||||||
* identify their organization among others.
|
* identify their organization among others.
|
||||||
*
|
*
|
||||||
* @param[in] majNum Beacon major group ID. iBeacon users may use
|
* @param[in] majNum Beacon major group ID. iBeacon fleet operators may use
|
||||||
* this field to divide the region into subregions, and their network into
|
* this field to divide the region into subregions, and their network into
|
||||||
* subnetworks.
|
* subnetworks.
|
||||||
*
|
*
|
||||||
|
|
|
@ -35,13 +35,13 @@ namespace mbed {
|
||||||
*/
|
*/
|
||||||
class BufferedBlockDevice : public BlockDevice {
|
class BufferedBlockDevice : public BlockDevice {
|
||||||
public:
|
public:
|
||||||
/** Create a memory-buffered block device wrapping an underlying block device
|
/** Lifetime of a memory-buffered block device wrapping an underlying block device
|
||||||
*
|
*
|
||||||
* @param bd Block device to back the BufferedBlockDevice
|
* @param bd Block device to back the BufferedBlockDevice
|
||||||
*/
|
*/
|
||||||
BufferedBlockDevice(BlockDevice *bd);
|
BufferedBlockDevice(BlockDevice *bd);
|
||||||
|
|
||||||
/** Destroy the memory-buffered block device
|
/** Lifetime of the memory-buffered block device
|
||||||
*/
|
*/
|
||||||
virtual ~BufferedBlockDevice();
|
virtual ~BufferedBlockDevice();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue