patch to ensure corred UUID being broadcast during Config.

This commit is contained in:
Austin Blackstone 2015-09-28 13:56:41 -05:00
parent 1811f21091
commit d389c42692
1 changed files with 2 additions and 4 deletions

View File

@ -241,10 +241,8 @@ public:
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
}