summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2009-04-07 03:41:06 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2009-04-07 03:41:06 +0000
commitde391e7abf5f02866a450febb335a34d383e6c01 (patch)
treefc104b344d2d872e1b90bfdfd10b1cf25dacde6a
parente62bf12fcdce12db7e36944e2b91a6b6c9be77be (diff)
downloadrockbox-de391e7abf5f02866a450febb335a34d383e6c01.tar.gz
rockbox-de391e7abf5f02866a450febb335a34d383e6c01.zip
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.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/firmware/export/config-gigabeat.h b/firmware/export/config-gigabeat.h
index 708c17fd8a..72b8c3d79d 100644
--- a/firmware/export/config-gigabeat.h
+++ b/firmware/export/config-gigabeat.h
@@ -113,15 +113,20 @@
113 113
114#define HAVE_HEADPHONE_DETECTION 114#define HAVE_HEADPHONE_DETECTION
115 115
116#define BATTERY_CAPACITY_DEFAULT 2000 /* default battery capacity */ 116#define BATTERY_CAPACITY_DEFAULT 830 /* default battery capacity */
117#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ 117#define BATTERY_CAPACITY_MIN 830 /* min. capacity selectable */
118#define BATTERY_CAPACITY_MAX 2500 /* max. capacity selectable */ 118#define BATTERY_CAPACITY_MAX 830 /* max. capacity selectable */
119#define BATTERY_CAPACITY_INC 25 /* capacity increment */ 119#define BATTERY_CAPACITY_INC 25 /* capacity increment */
120#define BATTERY_TYPES_COUNT 1 /* only one type */ 120#define BATTERY_TYPES_COUNT 1 /* only one type */
121 121
122/* Hardware controlled charging with monitoring */ 122/* Hardware controlled charging with monitoring */
123#define CONFIG_CHARGING CHARGING_MONITOR 123#define CONFIG_CHARGING CHARGING_MONITOR
124 124
125/* define current usage levels */
126#define CURRENT_NORMAL 46 /* 18 hours from an 830 mah battery*/
127#define CURRENT_BACKLIGHT 30 /* seems reasonable */
128#define CURRENT_RECORD 0 /* no recording on the gigabeat F/X */
129
125/* define this if the unit can be powered or charged via USB */ 130/* define this if the unit can be powered or charged via USB */
126#define HAVE_USB_POWER 131#define HAVE_USB_POWER
127 132