VNG board

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Mon Dec 01 14:31:19 2014 +0000
Parent:
215:f9d0169b9c28
Child:
217:b48d47c39020
Commit message:
Synchronized with git rev 9168068e
Author: Rohit Grover
re-organized code within resetDefaults()

Changed in this revision

services/URIBeaconConfigService.h Show annotated file Show diff for this revision Revisions of this file
--- a/services/URIBeaconConfigService.h	Mon Dec 01 14:31:19 2014 +0000
+++ b/services/URIBeaconConfigService.h	Mon Dec 01 14:31:19 2014 +0000
@@ -306,13 +306,13 @@
     }
 
     void resetDefaults(void) {
-        memset(uriData, 0, MAX_SIZE_URI_DATA_CHAR_VALUE);
+        lockedState      = false;
         uriDataLength    = 0;
-        memset(powerLevels, 0, sizeof(powerLevels));
+        memset(uriData, 0, MAX_SIZE_URI_DATA_CHAR_VALUE);
         flags            = 0;
         effectiveTxPower = 0;
+        memset(powerLevels, 0, sizeof(powerLevels));
         beaconPeriod     = 0;
-        lockedState      = false;
 
         updateGATT();
     }