summaryrefslogtreecommitdiffstats
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-11-29 20:59:05 +0000
committerAidan MacDonald <amachronic@protonmail.com>2021-12-05 13:37:25 -0500
commite3ee1908ddf99711b65b46fdab0c7b4ddca7867d (patch)
treeae466471001efac7e1d8072fd124094c387bbd3d /firmware/export/config.h
parent204be7f637b36e1c5c7615fe1381f45ad58e293d (diff)
downloadrockbox-e3ee1908ddf99711b65b46fdab0c7b4ddca7867d.tar.gz
rockbox-e3ee1908ddf99711b65b46fdab0c7b4ddca7867d.zip
powermgmt: Small cleanups to battery capacity code
- Don't include the 'battery capacity' setting unless the target allows changing it. - Clean up the preprocessor conditionals used to check for variable battery capacity support. - Don't use a variable for battery capacity unless it is actually needed. Change-Id: I3d8a338f107014f2c5098bc0a44ef0cfb4df9356
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index bb3f405d6a..277a1d8632 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -709,6 +709,14 @@ Lyre prototype 1 */
#define BATTERY_CAPACITY_DEFAULT 0
#endif
+#ifndef BATTERY_CAPACITY_MIN
+#define BATTERY_CAPACITY_MIN BATTERY_CAPACITY_DEFAULT
+#endif
+
+#ifndef BATTERY_CAPACITY_MAX
+#define BATTERY_CAPACITY_MAX BATTERY_CAPACITY_DEFAULT
+#endif
+
#ifndef BATTERY_CAPACITY_INC
#define BATTERY_CAPACITY_INC 0
#endif