High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Revision 464:c99b83a7ea55, committed 2015-06-19
- Comitter:
- rgrover1
- Date:
- Fri Jun 19 15:51:58 2015 +0100
- Parent:
- 463:fd7a5b8d81bd
- Child:
- 465:8c4c61279f82
- Commit message:
- Synchronized with git rev f4773ae1
Author: Rohit Grover
add UUID::setupLong()
Changed in this revision
public/UUID.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/public/UUID.h Fri Jun 19 15:51:58 2015 +0100 +++ b/public/UUID.h Fri Jun 19 15:51:58 2015 +0100 @@ -43,8 +43,7 @@ * The 128-bit (16-byte) UUID value, MSB first (big-endian). */ UUID(const LongUUIDBytes_t longUUID) : type(UUID_TYPE_LONG), baseUUID(), shortUUID(0) { - memcpy(baseUUID, longUUID, LENGTH_OF_LONG_UUID); - shortUUID = (uint16_t)((longUUID[2] << 8) | (longUUID[3])); + setupLong(longUUID); } /** @@ -87,6 +86,15 @@ /* empty */ } + /** + * Fill in a 128-bit UUID; this is useful when UUID isn't known at the time of object construction. + */ + void setupLong(const LongUUIDBytes_t longUUID) { + type = UUID_TYPE_LONG; + memcpy(baseUUID, longUUID, LENGTH_OF_LONG_UUID); + shortUUID = (uint16_t)((longUUID[2] << 8) | (longUUID[3])); + } + public: UUID_Type_t shortOrLong(void) const {return type; } const uint8_t *getBaseUUID(void) const {