summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehoon Kim <jh228.kim@samsung.com>2014-02-12 10:57:42 +0900
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-02-13 08:44:45 +0000
commit7aa3258ae71f114e2ec328851bd201b2c9799ad4 (patch)
tree8d44072656d3b7c01f7fca362558c27f5f6ead14
parentd3facbd92fe4e3f9815a9c4896bf2d5b31e51899 (diff)
downloadchrome-ec-7aa3258ae71f114e2ec328851bd201b2c9799ad4.tar.gz
Pit: Change the temperature range in discharging state.
Samsung change the temperature range in battery discharing state from (0 <=temp < 100) to (-20 <= temp < 70) from this year. That's why we have to change the battery_temperature_range structure value as soon as possible so that our reliability team check the battery. BUG=chrome-os-partner:25731 TEST=Boot on the pit / pi and then check the battery is working or not in the oven. BRANCH=pit Change-Id: I3289d22176af043e80a881f1626da386e823d857 Signed-off-by: Jaehoon Kim <jh228.kim@samsung.com> Reviewed-on: https://chromium-review.googlesource.com/186040 Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--board/pit/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/pit/board.c b/board/pit/board.c
index 2d1984f2c8..8977a86d4e 100644
--- a/board/pit/board.c
+++ b/board/pit/board.c
@@ -103,8 +103,8 @@ static const struct battery_info info = {
.start_charging_max_c = 45,
.charging_min_c = 0,
.charging_max_c = 60,
- .discharging_min_c = 0,
- .discharging_max_c = 100,
+ .discharging_min_c = -20,
+ .discharging_max_c = 70,
};
const struct battery_info *battery_get_info(void)