diff options
author | Aidan MacDonald <amachronic@protonmail.com> | 2021-12-11 16:18:30 +0000 |
---|---|---|
committer | Aidan MacDonald <amachronic@protonmail.com> | 2021-12-23 11:40:22 +0000 |
commit | 22d0c4da7085610136939ffe82bb3877a4fd8d5b (patch) | |
tree | f45d267c37796e83c73449fa4708e219e193bb16 /firmware/export | |
parent | 1a313dc9bff109d155e35bac79c475ea65198aea (diff) | |
download | rockbox-22d0c4da7085610136939ffe82bb3877a4fd8d5b.tar.gz rockbox-22d0c4da7085610136939ffe82bb3877a4fd8d5b.zip |
Revert "powermgmt: Remove an unnecessary function"
This reverts commit 6ff1a935b923b69d34d18e68af612297912c806b.
Reason: it created a mismatch between the displayed voltage
and percent since the voltage was unfiltered but percentage
was based off the filtered voltage.
Change-Id: I4cba099f2e1edf0ef7c4e17a32f566aa66f5b933
Diffstat (limited to 'firmware/export')
-rw-r--r-- | firmware/export/powermgmt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h index 9d4d4e06aa..77177e61af 100644 --- a/firmware/export/powermgmt.h +++ b/firmware/export/powermgmt.h @@ -143,6 +143,10 @@ unsigned int input_millivolts(void); /* voltage that device is running from */ void reset_battery_filter(int millivolts); #endif /* HAVE_BATTERY_SWITCH || HAVE_RESET_BATTERY_FILTER */ + +/* read unfiltered battery info */ +void battery_read_info(int *voltage, int *level); + /* Tells if the battery level is safe for disk writes */ bool battery_level_safe(void); |