Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BLE_API LIS3DH mbed nRF51822 BMC050 nRF51_LowPwr nRF51_Vdd
Fork of BLE_EddystoneBeacon_Service by
Revision 21:f4646308f363, committed 2015-07-23
- Comitter:
- mbedAustin
- Date:
- Thu Jul 23 06:48:50 2015 +0000
- Parent:
- 20:3b133cfafc39
- Child:
- 22:160766614338
- Commit message:
- [[Fix]] made RFU field in UID frame BigEndian Compliant (again, facepalm)
Changed in this revision
| ZipBeaconConfigService.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ZipBeaconConfigService.h Thu Jul 23 06:43:51 2015 +0000
+++ b/ZipBeaconConfigService.h Thu Jul 23 06:48:50 2015 +0000
@@ -257,8 +257,8 @@
Data[index++] = defaultUidInstanceID[x];
}
if(0 != uidRFU) { // 2B RFU, include if non-zero, otherwise ignore
+ Data[index++] = (uint8_t)(uidRFU >> 0);
Data[index++] = (uint8_t)(uidRFU >> 8);
- Data[index++] = (uint8_t)uidRFU;
}
DBG("construcUIDFrame %d, %d",maxSize,index);
return index;
