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.
Dependents: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Diff: services/URIBeaconConfigService.h
- Revision:
- 212:852d45a52016
- Parent:
- 211:f181effe5de3
- Child:
- 213:ac3b745af1d0
diff -r f181effe5de3 -r 852d45a52016 services/URIBeaconConfigService.h
--- a/services/URIBeaconConfigService.h Mon Dec 01 14:31:18 2014 +0000
+++ b/services/URIBeaconConfigService.h Mon Dec 01 14:31:18 2014 +0000
@@ -90,9 +90,6 @@
strcpy(reinterpret_cast<char *>(uriData), uriDataIn);
configureGAP();
- if (initSucceeded) {
- saveDefaults();
- }
GattCharacteristic *charTable[] = {&lockedStateChar, &uriDataChar, &flagsChar, &txPowerLevelsChar, &beaconPeriodChar, &resetChar};
GattService beaconControlService(URIBeacon2ControlServiceUUID, charTable, sizeof(charTable) / sizeof(GattCharacteristic *));
@@ -308,20 +305,13 @@
ble.setAdvertisingPayload();
}
- /* Preserve the defaults to be able to reset() upon request. */
- void saveDefaults(void) {
- memcpy(defaultURIData, uriData, MAX_SIZE_URI_DATA_CHAR_VALUE);
- defaultFlags = flags;
- defaultEffectiveTxPower = effectiveTxPower;
- defaultBeaconPeriod = beaconPeriod;
- }
-
void resetDefaults(void) {
- memcpy(uriData, defaultURIData, MAX_SIZE_URI_DATA_CHAR_VALUE);
+ memset(uriData, 0, MAX_SIZE_URI_DATA_CHAR_VALUE);
+ uriDataLength = 0;
memset(powerLevels, 0, sizeof(powerLevels));
- flags = defaultFlags;
- effectiveTxPower = defaultEffectiveTxPower;
- beaconPeriod = defaultBeaconPeriod;
+ flags = 0;
+ effectiveTxPower = 0;
+ beaconPeriod = 0;
updateGATT();
}
@@ -377,11 +367,6 @@
uint16_t beaconPeriod;
bool resetFlag;
- uint8_t defaultURIData[MAX_SIZE_URI_DATA_CHAR_VALUE];
- uint8_t defaultFlags;
- int8_t defaultEffectiveTxPower;
- uint16_t defaultBeaconPeriod;
-
GattCharacteristic lockedStateChar;
GattCharacteristic uriDataChar;
GattCharacteristic flagsChar;
