BLE_API_Tiny_BLE
Fork of BLE_API by
Revision 221:f813cddc145b, committed 2014-12-01
- Comitter:
- rgrover1
- Date:
- Mon Dec 01 14:31:19 2014 +0000
- Parent:
- 220:e75e8ba1ff80
- Child:
- 222:33b04c693e83
- Commit message:
- Synchronized with git rev 9ea6d8b6
Author: Rohit Grover
allow update to txPowerMode from onDataWritten()
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 @@ -301,11 +301,19 @@ } else if (params->charHandle == txPowerLevelsChar.getValueAttribute().getHandle()) { if (lockedState) { /* When locked, the device isn't allowed to update the characteristic. */ /* Restore GATT database with previous value. */ - ble.updateCharacteristicValue(txPowerLevelsChar.getValueAttribute().getHandle(), reinterpret_cast<uint8_t *>(powerLevels), NUM_POWER_MODES * sizeof(int8_t)); + updateTxPowerLevelsCharacteristic(); return; } else { memcpy(powerLevels, params->data, NUM_POWER_MODES * sizeof(int8_t)); } + } else if (params->charHandle == txPowerModeChar.getValueAttribute().getHandle()) { + if (lockedState) { /* When locked, the device isn't allowed to update the characteristic. */ + /* Restore GATT database with previous value. */ + updateTxPowerModeCharacteristic(); + return; + } else { + txPowerMode = *reinterpret_cast<const TXPowerModes_t *>(params->data); + } } else if (params->charHandle == beaconPeriodChar.getValueAttribute().getHandle()) { if (lockedState) { /* When locked, the device isn't allowed to update the characteristic. */ /* Restore GATT database with previous value. */