add global proxy / cache settings to httpget class. This removes the need of passing...
[Rockbox.git] / firmware / export / fmradio_i2c.h
blob6483594d0403eb78a03d567a9d1d16cf6eb2c1b5
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 * Physical interface of the Philips TEA5767 in Archos Ondio
11 * Copyright (C) 2004 by Jörg Hohensohn
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
20 #ifndef FMRADIO_I2C_H
21 #define FMRADIO_I2C_H
23 int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count);
24 int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count);
26 #endif