summaryrefslogtreecommitdiff
path: root/firmware
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
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')
-rw-r--r--firmware/export/config.h8
-rw-r--r--firmware/export/powermgmt.h4
-rw-r--r--firmware/powermgmt.c6
3 files changed, 16 insertions, 2 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 */
709#define BATTERY_CAPACITY_DEFAULT 0 709#define BATTERY_CAPACITY_DEFAULT 0
710#endif 710#endif
711 711
712#ifndef BATTERY_CAPACITY_MIN
713#define BATTERY_CAPACITY_MIN BATTERY_CAPACITY_DEFAULT
714#endif
715
716#ifndef BATTERY_CAPACITY_MAX
717#define BATTERY_CAPACITY_MAX BATTERY_CAPACITY_DEFAULT
718#endif
719
712#ifndef BATTERY_CAPACITY_INC 720#ifndef BATTERY_CAPACITY_INC
713#define BATTERY_CAPACITY_INC 0 721#define BATTERY_CAPACITY_INC 0
714#endif 722#endif
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index f45690573a..329e64d653 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -157,8 +157,10 @@ void battery_read_info(int *voltage, int *level);
157bool battery_level_safe(void); 157bool battery_level_safe(void);
158 158
159void set_poweroff_timeout(int timeout); 159void set_poweroff_timeout(int timeout);
160#if BATTERY_CAPACITY_INC > 0
160void set_battery_capacity(int capacity); /* set local battery capacity value */ 161void set_battery_capacity(int capacity); /* set local battery capacity value */
161int get_battery_capacity(void); /* get local battery capacity value */ 162#endif
163int get_battery_capacity(void); /* get local battery capacity value */
162void set_battery_type(int type); /* set local battery type */ 164void set_battery_type(int type); /* set local battery type */
163 165
164void set_sleeptimer_duration(int minutes); 166void set_sleeptimer_duration(int minutes);
diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c
index 8c807e5382..8e47b19721 100644
--- a/firmware/powermgmt.c
+++ b/firmware/powermgmt.c
@@ -114,7 +114,11 @@ int _battery_time(void) { return powermgmt_est_runningtime_min; }
114#endif 114#endif
115 115
116/* default value, mAh */ 116/* default value, mAh */
117#if BATTERY_CAPACITY_INC > 0
117static int battery_capacity = BATTERY_CAPACITY_DEFAULT; 118static int battery_capacity = BATTERY_CAPACITY_DEFAULT;
119#else
120# define battery_capacity BATTERY_CAPACITY_DEFAULT
121#endif
118 122
119#if BATTERY_TYPES_COUNT > 1 123#if BATTERY_TYPES_COUNT > 1
120static int battery_type = 0; 124static int battery_type = 0;
@@ -170,7 +174,7 @@ void set_battery_type(int type)
170} 174}
171#endif 175#endif
172 176
173#ifdef BATTERY_CAPACITY_MIN 177#if BATTERY_CAPACITY_INC > 0
174void set_battery_capacity(int capacity) 178void set_battery_capacity(int capacity)
175{ 179{
176 if (capacity > BATTERY_CAPACITY_MAX) 180 if (capacity > BATTERY_CAPACITY_MAX)