summaryrefslogtreecommitdiff
path: root/apps/plugins
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 /apps/plugins
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 'apps/plugins')
-rw-r--r--apps/plugins/battery_bench.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/battery_bench.c b/apps/plugins/battery_bench.c
index 53931d1930..e918fae39d 100644
--- a/apps/plugins/battery_bench.c
+++ b/apps/plugins/battery_bench.c
@@ -567,7 +567,12 @@ enum plugin_status plugin_start(const void* parameter)
567 ,MODEL_NAME,rb->rbversion); 567 ,MODEL_NAME,rb->rbversion);
568 568
569 rb->fdprintf(fd, "# Battery type: %d mAh Buffer Entries: %d\n", 569 rb->fdprintf(fd, "# Battery type: %d mAh Buffer Entries: %d\n",
570 rb->global_settings->battery_capacity, (int)BUF_ELEMENTS); 570#if BATTERY_CAPACITY_INC > 0
571 rb->global_settings->battery_capacity,
572#else
573 BATTERY_CAPACITY_DEFAULT,
574#endif
575 (int)BUF_ELEMENTS);
571 576
572 rb->fdprintf(fd, "# Rockbox has been running for %02d:%02d:%02d\n", 577 rb->fdprintf(fd, "# Rockbox has been running for %02d:%02d:%02d\n",
573 HMS((unsigned)start_tick/HZ)); 578 HMS((unsigned)start_tick/HZ));