High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Revision 306:ae0df1c9222a, committed 2015-03-02
- Comitter:
- rgrover1
- Date:
- Mon Mar 02 11:50:49 2015 +0000
- Parent:
- 305:71367f7cd078
- Child:
- 307:ecbc3405c66e
- Commit message:
- Synchronized with git rev da2879ac
Author: Jeremy Brodt
Removed zeroing of UUID bytes 2 and 3. This is specific to the Nordic implementation.
Changed in this revision
common/UUID.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/common/UUID.cpp Mon Mar 02 11:50:48 2015 +0000 +++ b/common/UUID.cpp Mon Mar 02 11:50:49 2015 +0000 @@ -81,12 +81,6 @@ if (baseUUID[index] != 0) { type = UUID_TYPE_LONG; - - /* zero out the 16-bit part in the base; this will help equate long - * UUIDs when they differ only in this 16-bit relative part.*/ - baseUUID[2] = 0; - baseUUID[3] = 0; - return; } }