diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-04-07 03:41:06 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-04-07 03:41:06 +0000 |
| commit | de391e7abf5f02866a450febb335a34d383e6c01 (patch) | |
| tree | fc104b344d2d872e1b90bfdfd10b1cf25dacde6a | |
| parent | e62bf12fcdce12db7e36944e2b91a6b6c9be77be (diff) | |
| download | rockbox-de391e7abf5f02866a450febb335a34d383e6c01.zip rockbox-de391e7abf5f02866a450febb335a34d383e6c01.tar.gz rockbox-de391e7abf5f02866a450febb335a34d383e6c01.tar.bz2 rockbox-de391e7abf5f02866a450febb335a34d383e6c01.tar.xz | |
Add current use and fix battery capacity settings for the Gigabeat F/X. Thanks to AlHaz for pointing out that they were incorrect.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20637 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-gigabeat.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/firmware/export/config-gigabeat.h b/firmware/export/config-gigabeat.h index 708c17f..72b8c3d 100644 --- a/firmware/export/config-gigabeat.h +++ b/firmware/export/config-gigabeat.h @@ -113,15 +113,20 @@ #define HAVE_HEADPHONE_DETECTION -#define BATTERY_CAPACITY_DEFAULT 2000 /* default battery capacity */ -#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ -#define BATTERY_CAPACITY_MAX 2500 /* max. capacity selectable */ +#define BATTERY_CAPACITY_DEFAULT 830 /* default battery capacity */ +#define BATTERY_CAPACITY_MIN 830 /* min. capacity selectable */ +#define BATTERY_CAPACITY_MAX 830 /* max. capacity selectable */ #define BATTERY_CAPACITY_INC 25 /* capacity increment */ #define BATTERY_TYPES_COUNT 1 /* only one type */ /* Hardware controlled charging with monitoring */ #define CONFIG_CHARGING CHARGING_MONITOR +/* define current usage levels */ +#define CURRENT_NORMAL 46 /* 18 hours from an 830 mah battery*/ +#define CURRENT_BACKLIGHT 30 /* seems reasonable */ +#define CURRENT_RECORD 0 /* no recording on the gigabeat F/X */ + /* define this if the unit can be powered or charged via USB */ #define HAVE_USB_POWER |