aa

Dependents:   Peripheral_1_serial_copy Peripheral_1_serial 151006_1st_Scenario_normal

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Tue Sep 29 09:54:19 2015 +0100
Parent:
831:a6ef72e0697a
Child:
833: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
     }