summaryrefslogtreecommitdiff
path: root/common/battery_link.c
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2013-06-13 14:02:54 -0700
committerBill Richardson <wfrichar@chromium.org>2013-06-13 15:52:16 -0700
commit74f5aaaa50ae4457b1a01fd3251f575a9b4a0687 (patch)
treea95c0e4ae7feb1ac7f5fc11af726f5a25a1b4b71 /common/battery_link.c
parentd46ea680f7ca69dc13c91c10e83c6f61190ef159 (diff)
downloadchrome-ec-74f5aaaa50ae4457b1a01fd3251f575a9b4a0687.tar.gz
Use battery's precharge_current value for deep discharge recovery.
We've been providing the battery's max voltage and the charger's minimum current to try to awaken a deep-discharged battery. For some batteries, that doesn't appear to be enough. This change will use the battery's preconfigured precharge_current value instead. BUG=chrome-os-partner:20142 BRANCH=none TEST=manual I don't have a deep-discharged battery to try it on. I've been using these values manually in order to get the battery away. With no battery connected, you can run the "charger" command on the EC console to see what values it's using. They should match what the battery wants. Change-Id: I16d06011103ba70682397859d9844a37938d3e90 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/58575
Diffstat (limited to 'common/battery_link.c')
-rw-r--r--common/battery_link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/battery_link.c b/common/battery_link.c
index 97d080d876..98cde6de46 100644
--- a/common/battery_link.c
+++ b/common/battery_link.c
@@ -69,7 +69,7 @@ static const struct battery_info info = {
.temp_discharge_max = CELSIUS_TO_DECI_KELVIN(60),
/* Pre-charge current: I <= 0.01C */
- .precharge_current = (int)(DESIGN_CAPACITY * 0.01),
+ .precharge_current = 64, /* mA */
};
static inline void limit_value(int *val, int limit)