diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2021-10-05 09:45:03 (GMT) |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2021-10-05 09:45:03 (GMT) |
| commit | f61e88b8425f9edcd38e47027df62dcc56c83adc (patch) | |
| tree | 1faacaf82f085ce6ca718d598b13a4f509a8e0ff /src/components/ble/BatteryInformationService.cpp | |
| parent | e468acc99e4d7e188dc902983640f5eb8e8ff31f (diff) | |
| parent | 392c7ad2aceecd8fe976165b66d39f0ed2083911 (diff) | |
Merge branch 'develop' into update_touch_driver
Diffstat (limited to 'src/components/ble/BatteryInformationService.cpp')
| -rw-r--r-- | src/components/ble/BatteryInformationService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/BatteryInformationService.cpp b/src/components/ble/BatteryInformationService.cpp index 7f17690..4ef0235 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; } |
