diff options
Diffstat (limited to 'firmware/drivers/fmradio_i2c.c')
-rw-r--r-- | firmware/drivers/fmradio_i2c.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/firmware/drivers/fmradio_i2c.c b/firmware/drivers/fmradio_i2c.c new file mode 100644 index 0000000000..93c5d2fa91 --- /dev/null +++ b/firmware/drivers/fmradio_i2c.c | |||
@@ -0,0 +1,41 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * Physical interface of the Philips TEA5767 in Archos Ondio | ||
10 | * | ||
11 | * Copyright (C) 2004 by Jörg Hohensohn | ||
12 | * | ||
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. | ||
15 | * | ||
16 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
17 | * KIND, either express or implied. | ||
18 | * | ||
19 | ****************************************************************************/ | ||
20 | #include "lcd.h" | ||
21 | #include "sh7034.h" | ||
22 | #include "kernel.h" | ||
23 | #include "thread.h" | ||
24 | #include "debug.h" | ||
25 | #include "system.h" | ||
26 | |||
27 | #ifdef CONFIG_TUNER | ||
28 | |||
29 | /* reads 5 byte */ | ||
30 | void fmradio_i2c_read(unsigned char* p_data) | ||
31 | { | ||
32 | (void)p_data; | ||
33 | } | ||
34 | |||
35 | /* writes 5 bytes */ | ||
36 | void fmradio_i2c_set(const unsigned char* p_data) | ||
37 | { | ||
38 | (void)p_data; | ||
39 | } | ||
40 | |||
41 | #endif | ||