summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-04-03 22:54:53 -0500
committerSolomon Peachy <pizza@shaftnet.org>2021-04-04 13:27:00 +0000
commit962d412917a5cbb923847163a2beafaa3301dd8f (patch)
tree5f9ce360e403f55a0b63075b4d6aa78954565229
parent4bc7bafc681fbc9cf046d39aaaac41726f7a5fcd (diff)
downloadrockbox-962d412917a5cbb923847163a2beafaa3301dd8f.tar.gz
rockbox-962d412917a5cbb923847163a2beafaa3301dd8f.zip
hdd1630/hdd6330: update battery capacities
Ensure the default setting reflects what the service manual says the official battery capacity is. Change the ranges to reflect what replacement batteries are actually available. This range is actually much shorter in reality due to these units requiring the rarer 3 pin battery type that uses a thermistor. As such there's only one real replacement battery for each. So the HDD1630 caps out around 700 mah while the HDD6330 caps out around 680 mah. Change-Id: I2dbbba83ad2cd6e1d84e3481c4af84a06c45e16b
-rw-r--r--firmware/export/config/gogearhdd1630.h4
-rw-r--r--firmware/export/config/gogearhdd6330.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/firmware/export/config/gogearhdd1630.h b/firmware/export/config/gogearhdd1630.h
index 4c56646dbf..dec114b339 100644
--- a/firmware/export/config/gogearhdd1630.h
+++ b/firmware/export/config/gogearhdd1630.h
@@ -135,8 +135,8 @@
135#define HAVE_HEADPHONE_DETECTION 135#define HAVE_HEADPHONE_DETECTION
136 136
137#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */ 137#define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */
138#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */ 138#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */
139#define BATTERY_CAPACITY_MAX 630 /* max. capacity selectable */ 139#define BATTERY_CAPACITY_MAX 700 /* max. capacity selectable */
140#define BATTERY_CAPACITY_INC 0 /* capacity increment */ 140#define BATTERY_CAPACITY_INC 0 /* capacity increment */
141#define BATTERY_TYPES_COUNT 1 /* only one type */ 141#define BATTERY_TYPES_COUNT 1 /* only one type */
142 142
diff --git a/firmware/export/config/gogearhdd6330.h b/firmware/export/config/gogearhdd6330.h
index 964e725184..afe77d36b2 100644
--- a/firmware/export/config/gogearhdd6330.h
+++ b/firmware/export/config/gogearhdd6330.h
@@ -139,9 +139,9 @@
139/* Define this if you can detect headphones */ 139/* Define this if you can detect headphones */
140#define HAVE_HEADPHONE_DETECTION 140#define HAVE_HEADPHONE_DETECTION
141 141
142#define BATTERY_CAPACITY_DEFAULT 840 /* default battery capacity */ 142#define BATTERY_CAPACITY_DEFAULT 830 /* default battery capacity */
143#define BATTERY_CAPACITY_MIN 800 /* min. capacity selectable */ 143#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */
144#define BATTERY_CAPACITY_MAX 1200 /* max. capacity selectable */ 144#define BATTERY_CAPACITY_MAX 900 /* max. capacity selectable */
145#define BATTERY_CAPACITY_INC 20 /* capacity increment */ 145#define BATTERY_CAPACITY_INC 20 /* capacity increment */
146#define BATTERY_TYPES_COUNT 1 /* only one type */ 146#define BATTERY_TYPES_COUNT 1 /* only one type */
147 147