summaryrefslogtreecommitdiff
path: root/src/components/ble
diff options
context:
space:
mode:
authorTim Keller <geekboy1011@gmail.com>2021-10-02 03:22:12 +0000
committerTim Keller <geekboy1011@gmail.com>2021-10-02 03:22:12 +0000
commitdafdf330627d6291acd56f16e8da8c914d19bb29 (patch)
tree9488865f0cab2d82fdb48e6be0dd7e942dbad2f4 /src/components/ble
parente9bb0b3cdd0e1b95b7bfdcfb94db5a6a0966eed7 (diff)
Remove static declartion on batteryValue preventing read attribute from updating.
Diffstat (limited to 'src/components/ble')
-rw-r--r--src/components/ble/BatteryInformationService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/BatteryInformationService.cpp b/src/components/ble/BatteryInformationService.cpp
index 7f176904..4ef02358 100644
--- a/src/components/ble/BatteryInformationService.cpp
+++ b/src/components/ble/BatteryInformationService.cpp
@@ -43,7 +43,7 @@ int BatteryInformationService::OnBatteryServiceRequested(uint16_t connectionHand
ble_gatt_access_ctxt* context) {
if (attributeHandle == batteryLevelHandle) {
NRF_LOG_INFO("BATTERY : handle = %d", batteryLevelHandle);
- static uint8_t batteryValue = batteryController.PercentRemaining();
+ uint8_t batteryValue = batteryController.PercentRemaining();
int res = os_mbuf_append(context->om, &batteryValue, 1);
return (res == 0) ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
}