Trim down peak calculation a bit.
[kugel-rb.git] / firmware / target / arm / as3525 / sansa-e200v2 / powermgmt-e200v2.c
blobaff5d1e901ef894753890d9ff252a8e282afe205
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese
11 * Revisions copyright (C) 2005 by Gerald Van Baren
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include "config.h"
24 #include "powermgmt.h"
26 const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
28 3400
31 const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] =
33 3300
36 /* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
37 const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
39 /* Sansa Li Ion 750mAH, FIXME copied from e200v1 */
40 { 3300, 3680, 3740, 3760, 3780, 3810, 3870, 3930, 3970, 4070, 4160 },
43 /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
44 const unsigned short percent_to_volt_charge[11] =
46 /* Sansa Li Ion 750mAH FIXME */
47 3300, 3680, 3740, 3760, 3780, 3810, 3870, 3930, 3970, 4070, 4160