summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijay Hiremath <vijay.p.hiremath@intel.com>2016-01-28 16:59:58 -0800
committerchrome-bot <chrome-bot@chromium.org>2016-01-31 05:04:32 -0800
commite7a9ccbf0435cdc588f78dd9ae9747d4b38dc394 (patch)
tree4cd3fd6a40b6ef2a31f4b08e51eadafe70020b0e
parentcddf3c05dad6bf129b3debf36d5912b3509e47c4 (diff)
downloadchrome-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.c2
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,