summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2005-03-03 08:32:55 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2005-03-03 08:32:55 +0000
commitd061b371d6f53e0c2f310f4eb5776430772a8ac5 (patch)
tree611417c1cf40f66fe4d7c48e976ab3a26fbb1a22 /firmware/export
parentac79a0c42b19c4c3139afee467672d6e6c5b1c06 (diff)
downloadrockbox-d061b371d6f53e0c2f310f4eb5776430772a8ac5.tar.gz
rockbox-d061b371d6f53e0c2f310f4eb5776430772a8ac5.zip
removed the practically useless "trickle charge" and "deep discharge" options, now trickle is always on and deep always off
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6107 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/powermgmt.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index 59f9465d49..3bccb0f59f 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -61,9 +61,8 @@
61#define CHARGE_MAX_TIME_1500 450 /* minutes: maximum charging time for 1500 mAh batteries */ 61#define CHARGE_MAX_TIME_1500 450 /* minutes: maximum charging time for 1500 mAh batteries */
62 /* actual max time depends also on BATTERY_CAPACITY! */ 62 /* actual max time depends also on BATTERY_CAPACITY! */
63#define CHARGE_MIN_TIME 10 /* minutes: minimum charging time */ 63#define CHARGE_MIN_TIME 10 /* minutes: minimum charging time */
64#define CHARGE_RESTART_HI 85 /* %: when to restart charging in 'charge' mode */ 64#define CHARGE_RESTART 85 /* %: when to restart charging in 'charge' mode */
65 /* attention: if set too high, normal charging is started in trickle mode */ 65 /* attention: if set too high, normal charging is started in trickle mode */
66#define CHARGE_RESTART_LO 10 /* %: when to restart charging in 'discharge' mode */
67#define TOPOFF_MAX_TIME 90 /* After charging, go to top off charge. How long should top off charge be? */ 66#define TOPOFF_MAX_TIME 90 /* After charging, go to top off charge. How long should top off charge be? */
68#define TOPOFF_VOLTAGE 565 /* which voltage is best? (centivolts) */ 67#define TOPOFF_VOLTAGE 565 /* which voltage is best? (centivolts) */
69#define TRICKLE_MAX_TIME 12*60 /* After top off charge, go to trickle charge. How long should trickle charge be? */ 68#define TRICKLE_MAX_TIME 12*60 /* After top off charge, go to trickle charge. How long should trickle charge be? */
@@ -80,9 +79,6 @@ extern int short_delta; /* short term delta battery voltage */
80extern int powermgmt_last_cycle_startstop_min; /* how many minutes ago was the charging started or stopped? */ 79extern int powermgmt_last_cycle_startstop_min; /* how many minutes ago was the charging started or stopped? */
81extern int powermgmt_last_cycle_level; /* which level had the batteries at this time? */ 80extern int powermgmt_last_cycle_level; /* which level had the batteries at this time? */
82 81
83void enable_deep_discharge(bool on); /* deep discharge the battery */
84
85void enable_trickle_charge(bool on);
86extern int trickle_sec; /* trickle charge: How many seconds per minute are we charging actually? */ 82extern int trickle_sec; /* trickle charge: How many seconds per minute are we charging actually? */
87 83
88#endif /* HAVE_CHARGE_CTRL */ 84#endif /* HAVE_CHARGE_CTRL */