19cb444691
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21483 a1c6a512-1295-4272-9138-f99709370657
70 lines
2.1 KiB
C
70 lines
2.1 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "cpu.h"
|
|
#include "adc.h"
|
|
#include "adc-target.h"
|
|
#include "kernel.h"
|
|
#include "tsc2100.h"
|
|
#include "button-target.h"
|
|
|
|
void adc_init(void)
|
|
{
|
|
/* Initialize the touchscreen and the battery readout */
|
|
tsc2100_adc_init();
|
|
|
|
/* Enable the tsc2100 interrupt */
|
|
IO_INTC_EINT2 |= (1<<3); /* IRQ_GIO14 */
|
|
}
|
|
|
|
/* Touchscreen data available interupt */
|
|
void GIO14(void)
|
|
{
|
|
/* Interrupts work properly when cleared first */
|
|
IO_INTC_IRQ2 = (1<<3); /* IRQ_GIO14 == 35 */
|
|
|
|
short tsadc = tsc2100_readreg(TSADC_PAGE, TSADC_ADDRESS);
|
|
short adscm = (tsadc&TSADC_ADSCM_MASK)>>TSADC_ADSCM_SHIFT;
|
|
|
|
/* Always read all registers in one go to clear any missed flags */
|
|
tsc2100_read_data();
|
|
|
|
switch (adscm)
|
|
{
|
|
case 0x01:
|
|
case 0x02:
|
|
case 0x03:
|
|
case 0x04:
|
|
case 0x05:
|
|
/* do a battery read - this will shutdown the adc till the next tick
|
|
*/
|
|
// tsc2100_set_mode(true, 0x0B);
|
|
break;
|
|
case 0x06:
|
|
case 0x07:
|
|
case 0x08:
|
|
case 0x09:
|
|
case 0x0B:
|
|
tsc2100_set_mode(true, 0x01);
|
|
break;
|
|
}
|
|
}
|
|
|