diff options
author | ReFil <[email protected]> | 2023-11-15 18:03:30 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-15 13:03:30 -0500 |
commit | 8776911da5005d42cd0bdf108b23deca16d7ec82 (patch) | |
tree | ea34ed09143a94594c1c5df5a2f8a47d9187489b /app/Kconfig | |
parent | 3027b2a6e8f2896f7e08d5a502be50ad21f32d7f (diff) | |
download | zmk-8776911da5005d42cd0bdf108b23deca16d7ec82.tar.gz zmk-8776911da5005d42cd0bdf108b23deca16d7ec82.zip |
feat(ble): Allow disabling BLE BAS reporting
The battery reporting has been known to cause macOS computers to wakeup repeatedly. In some cases (e.g. display or custom lighting implementation) one might want to collect battery SOC without broadcasting over BLE
* Update docs/docs/config/battery.md
Co-authored-by: Cem Aksoylar <[email protected]>
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Kconfig b/app/Kconfig index 072795e317..1b3eb6def6 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -321,7 +321,7 @@ config ZMK_BATTERY_REPORTING bool "Battery level detection/reporting" default n select SENSOR - select BT_BAS if ZMK_BLE + imply BT_BAS if ZMK_BLE config ZMK_IDLE_TIMEOUT int "Milliseconds of inactivity before entering idle state (OLED shutoff, etc)" |