40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
|
/***************************************************************************
|
||
|
* __________ __ ___.
|
||
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||
|
* \/ \/ \/ \/ \/
|
||
|
* $Id: adc-s5l8700.c 21775 2009-07-11 14:12:02Z bertrik $
|
||
|
*
|
||
|
* Copyright (C) 2009 by Bertrik Sikken
|
||
|
*
|
||
|
* 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 "config.h"
|
||
|
|
||
|
#include "inttypes.h"
|
||
|
#include "s5l8702.h"
|
||
|
#include "adc.h"
|
||
|
#include "adc-target.h"
|
||
|
#include "pmu-target.h"
|
||
|
#include "kernel.h"
|
||
|
|
||
|
unsigned short adc_read(int channel)
|
||
|
{
|
||
|
return pmu_read_adc(channel);
|
||
|
}
|
||
|
|
||
|
void adc_init(void)
|
||
|
{
|
||
|
}
|
||
|
|