summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorEdward Hill <ecgh@chromium.org>2017-12-08 12:33:07 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-12-11 22:44:27 -0800
commit359b98c312521bdaee2e4065e1d39ae7ab70f1c4 (patch)
treec31bd22e488ed155e698cedd00fd3ff1cefc1dd1 /board
parent7009814664ea518e5b87852e7d2cd452aad0228a (diff)
downloadchrome-ec-359b98c312521bdaee2e4065e1d39ae7ab70f1c4.tar.gz
grunt: Update battery info
Adjust values to match the datasheet. BUG=b:69683279 BRANCH=none TEST=make BOARD=grunt Change-Id: Ic95e9f2ccf2316f342d014f6042fb7b0f7108357 Signed-off-by: Edward Hill <ecgh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/817876 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'board')
-rw-r--r--board/grunt/battery.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/grunt/battery.c b/board/grunt/battery.c
index f1dc9f9432..49e943165d 100644
--- a/board/grunt/battery.c
+++ b/board/grunt/battery.c
@@ -13,16 +13,16 @@
#define SB_SHUTDOWN_DATA 0x0010
static const struct battery_info info = {
- .voltage_max = 13200,/* mV */
- .voltage_normal = 11400,
+ .voltage_max = 13200, /* mV */
+ .voltage_normal = 11550,
.voltage_min = 9000,
- .precharge_current = 256,/* mA */
+ .precharge_current = 256, /* mA */
.start_charging_min_c = 0,
.start_charging_max_c = 50,
.charging_min_c = 0,
.charging_max_c = 60,
.discharging_min_c = -20,
- .discharging_max_c = 70,
+ .discharging_max_c = 75,
};
const struct battery_info *battery_get_info(void)
{