Jens Arnold | 0fac492 | 2007-08-17 06:45:18 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2002 by Heikki Hannikainen, Uwe Freese |
| 11 | * Revisions copyright (C) 2005 by Gerald Van Baren |
| 12 | * |
Daniel Stenberg | 2acc0ac | 2008-06-28 18:10:04 +0000 | [diff] [blame^] | 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. |
Jens Arnold | 0fac492 | 2007-08-17 06:45:18 +0000 | [diff] [blame] | 17 | * |
| 18 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 19 | * KIND, either express or implied. |
| 20 | * |
| 21 | ****************************************************************************/ |
| 22 | |
| 23 | #include "config.h" |
| 24 | #include "adc.h" |
| 25 | #include "powermgmt.h" |
| 26 | |
| 27 | const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = |
| 28 | { |
| 29 | 3380 |
| 30 | }; |
| 31 | |
| 32 | const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] = |
| 33 | { |
| 34 | 3020 |
| 35 | }; |
| 36 | |
| 37 | /* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */ |
| 38 | const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] = |
| 39 | { |
| 40 | /* Below 3370 the backlight starts flickering during HD access */ |
| 41 | { 3370, 3650, 3700, 3740, 3780, 3820, 3870, 3930, 4000, 4080, 4160 } |
| 42 | }; |
| 43 | |
| 44 | /* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ |
| 45 | const unsigned short percent_to_volt_charge[11] = |
| 46 | { |
| 47 | /* values measured over one full charging cycle */ |
| 48 | 3540, 3860, 3930, 3980, 4000, 4020, 4040, 4080, 4130, 4180, 4230 /* LiPo */ |
| 49 | }; |
| 50 | |
| 51 | /* FIX: this value is picked at random */ |
| 52 | #define BATTERY_SCALE_FACTOR 4266 |
| 53 | /* full-scale ADC readout (2^8) in millivolt */ |
| 54 | |
| 55 | /* Returns battery voltage from ADC [millivolts] */ |
| 56 | unsigned int battery_adc_voltage(void) |
| 57 | { |
| 58 | return (adc_read(ADC_UNREG_POWER) * BATTERY_SCALE_FACTOR) >> 8; |
| 59 | } |
| 60 | |