From 962d412917a5cbb923847163a2beafaa3301dd8f Mon Sep 17 00:00:00 2001 From: James Buren Date: Sat, 3 Apr 2021 22:54:53 -0500 Subject: 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 --- firmware/export/config/gogearhdd1630.h | 4 ++-- firmware/export/config/gogearhdd6330.h | 6 +++--- 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 @@ #define HAVE_HEADPHONE_DETECTION #define BATTERY_CAPACITY_DEFAULT 630 /* default battery capacity */ -#define BATTERY_CAPACITY_MIN 630 /* min. capacity selectable */ -#define BATTERY_CAPACITY_MAX 630 /* max. capacity selectable */ +#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */ +#define BATTERY_CAPACITY_MAX 700 /* max. capacity selectable */ #define BATTERY_CAPACITY_INC 0 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ 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 @@ /* Define this if you can detect headphones */ #define HAVE_HEADPHONE_DETECTION -#define BATTERY_CAPACITY_DEFAULT 840 /* default battery capacity */ -#define BATTERY_CAPACITY_MIN 800 /* min. capacity selectable */ -#define BATTERY_CAPACITY_MAX 1200 /* max. capacity selectable */ +#define BATTERY_CAPACITY_DEFAULT 830 /* default battery capacity */ +#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */ +#define BATTERY_CAPACITY_MAX 900 /* max. capacity selectable */ #define BATTERY_CAPACITY_INC 20 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ -- cgit