summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaehoon kim <jh228.kim@samsung.com>2013-09-24 11:34:08 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-09-24 23:14:34 +0000
commitd1da1250a838940fdfdf1b24b356186b738f33dd (patch)
treea1b1c98d277d4c305d8758d496931ae3ee789bb1
parent1e08d488bdf680adc20094aec4e58c065b208b82 (diff)
downloadchrome-ec-d1da1250a838940fdfdf1b24b356186b738f33dd.tar.gz
stm32: snow: Fix the charging temperature range.
The value of start_charging_min_c and charging_min_c is 5 degrees C. To meet the samsung specification, we have to change these values as 0 degrees C like pit. BUG=chrome-os-partner:22882 TEST=Already checked the charging LED and the EC log in the oven. Change-Id: Id6b6e1e61d5d8c2a3fcca7ff2ccc46e430ec2d7d Signed-off-by: Jaehoon Kim <jh228.kim@samsung.com> Reviewed-on: https://chromium-review.googlesource.com/170476 Reviewed-by: Wonjoon Lee <woojoo.lee@samsung.com> Reviewed-by: Katie Roberts-Hoffman <katierh@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--board/snow/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/snow/board.c b/board/snow/board.c
index 2a0c3f0a83..1d1e22d8d0 100644
--- a/board/snow/board.c
+++ b/board/snow/board.c
@@ -108,9 +108,9 @@ const int gpio_alt_funcs_count = ARRAY_SIZE(gpio_alt_funcs);
/* Battery temperature ranges in degrees C */
const struct battery_temperature_ranges bat_temp_ranges = {
- .start_charging_min_c = 5,
+ .start_charging_min_c = 0,
.start_charging_max_c = 45,
- .charging_min_c = 5,
+ .charging_min_c = 0,
.charging_max_c = 60,
.discharging_min_c = 0,
.discharging_max_c = 100,