7f4f9aead7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12745 a1c6a512-1295-4272-9138-f99709370657
43 lines
2 KiB
C
43 lines
2 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2006 by Barry Wardell
|
|
*
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef _ADC_TARGET_H_
|
|
#define _ADC_TARGET_H_
|
|
|
|
/* ADC channels */
|
|
#define NUM_ADC_CHANNELS 13
|
|
|
|
#define ADC_BVDD 0 /* Battery voltage of 4V LiIo accumulator */
|
|
#define ADC_RTCSUP 1 /* RTC backup battery voltage */
|
|
#define ADC_UVDD 2 /* USB host voltage */
|
|
#define ADC_CHG_IN 3 /* Charger input voltage */
|
|
#define ADC_CVDD 4 /* Charger pump output voltage */
|
|
#define ADC_BATTEMP 5 /* Battery charging temperature */
|
|
#define ADC_MICSUP1 6 /* Voltage on MicSup1 for remote control
|
|
or external voltage measurement */
|
|
#define ADC_MICSUP2 7 /* Voltage on MicSup1 for remote control
|
|
or external voltage measurement */
|
|
#define ADC_VBE1 8 /* Measuring junction temperature @ 2uA */
|
|
#define ADC_VBE2 9 /* Measuring junction temperature @ 1uA */
|
|
#define ADC_I_MICSUP1 10 /* Current of MicSup1 for remote control detection */
|
|
#define ADC_I_MICSUP2 11 /* Current of MicSup2 for remote control detection */
|
|
#define ADC_VBAT 12 /* Single cell battery voltage */
|
|
|
|
#define ADC_UNREG_POWER ADC_BVDD /* For compatibility */
|
|
|
|
#endif
|