From 7aa3258ae71f114e2ec328851bd201b2c9799ad4 Mon Sep 17 00:00:00 2001 From: Jaehoon Kim Date: Wed, 12 Feb 2014 10:57:42 +0900 Subject: [PATCH] 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 Reviewed-on: https://chromium-review.googlesource.com/186040 Reviewed-by: Randall Spangler --- board/pit/board.c | 4 ++-- 1 file 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)