diff options
author | Vijay Hiremath <vijay.p.hiremath@intel.com> | 2016-01-28 16:59:58 -0800 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2016-01-31 05:04:32 -0800 |
commit | e7a9ccbf0435cdc588f78dd9ae9747d4b38dc394 (patch) | |
tree | 4cd3fd6a40b6ef2a31f4b08e51eadafe70020b0e | |
parent | cddf3c05dad6bf129b3debf36d5912b3509e47c4 (diff) | |
download | chrome-ec-e7a9ccbf0435cdc588f78dd9ae9747d4b38dc394.tar.gz |
Kunimitsu: Change the battery minimum voltage value
Charger Low_VSYS_Prochot# threshold voltage assertion is set to
6V hence increased the minimum battery voltage to 6.1V to avoid
unwanted Prochot# assertions.
BUG=none
TEST=Drained the battery to 6.1V, Prochot# pin did not assert.
BRANCH=glados
Change-Id: Ie5d4decf3327a45d64638771dd8a5fc7017db261
Signed-off-by: Vijay Hiremath <vijay.p.hiremath@intel.com>
Reviewed-on: https://chromium-review.googlesource.com/324564
Commit-Ready: Vijay P Hiremath <vijay.p.hiremath@intel.com>
Tested-by: Vijay P Hiremath <vijay.p.hiremath@intel.com>
Reviewed-by: Shawn N <shawnn@chromium.org>
-rw-r--r-- | board/kunimitsu/battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kunimitsu/battery.c b/board/kunimitsu/battery.c index 0fa688e44d..e03d687daf 100644 --- a/board/kunimitsu/battery.c +++ b/board/kunimitsu/battery.c @@ -15,7 +15,7 @@ static const struct battery_info info = { .voltage_max = 8700,/* mV */ .voltage_normal = 7600, - .voltage_min = 6000, + .voltage_min = 6100, .precharge_current = 150,/* mA */ .start_charging_min_c = 0, .start_charging_max_c = 45, |