Bike service
Fork of BLE_API by
Revision 831:47413688398a, committed 2015-09-29
- Comitter:
- rgrover1
- Date:
- Tue Sep 29 09:54:19 2015 +0100
- Parent:
- 830:a6ef72e0697a
- Child:
- 832:5dac246f8f02
- Commit message:
- Synchronized with git rev d389c426
Author: Austin Blackstone
patch to ensure corred UUID being broadcast during Config.
Changed in this revision
ble/services/EddystoneConfigService.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/services/EddystoneConfigService.h Tue Sep 29 09:54:18 2015 +0100 +++ b/ble/services/EddystoneConfigService.h Tue Sep 29 09:54:19 2015 +0100 @@ -241,10 +241,8 @@ if (defaultUriDataLength > URI_DATA_MAX) { return; } - memcpy(defaultUriData,uriIn,URI_DATA_MAX); - //defaultUriDataLength = strlen(uriIn); - INFO("\t default URI = %s : %d", uriIn, defaultUriDataLength); -// defaultUriData = (UriData_t *)uriIn; + INFO("\t URI input = %s : %d", uriIn, defaultUriDataLength); + INFO("\t default URI = %s : %d ",defaultUriData,defaultUriDataLength ); defaultUriAdvPeriod = advPeriod; urlIsSet = true; // flag to add this to eddystone service when config is done }