Review updates

pull/9333/head
offirko 2019-01-10 15:42:28 +02:00
parent 61926092a2
commit b21576c8cf
2 changed files with 5 additions and 4 deletions

View File

@ -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.
* *

View File

@ -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();