diff options
Diffstat (limited to 'firmware/drivers/tuner')
-rw-r--r-- | firmware/drivers/tuner/stfm1000.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/stfm1000.c b/firmware/drivers/tuner/stfm1000.c new file mode 100644 index 0000000000..ae96993285 --- /dev/null +++ b/firmware/drivers/tuner/stfm1000.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * | ||
10 | * Copyright (C) 2012 by amaury Pouly | ||
11 | * | ||
12 | * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing | ||
13 | * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach | ||
14 | * | ||
15 | * This program is free software; you can redistribute it and/or | ||
16 | * modify it under the terms of the GNU General Public License | ||
17 | * as published by the Free Software Foundation; either version 2 | ||
18 | * of the License, or (at your option) any later version. | ||
19 | * | ||
20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY | ||
21 | * KIND, either express or implied. | ||
22 | * | ||
23 | ****************************************************************************/ | ||
24 | #include "config.h" | ||
25 | #include "system.h" | ||
26 | #include <string.h> | ||
27 | #include "kernel.h" | ||
28 | #include "power.h" | ||
29 | #include "tuner.h" /* tuner abstraction interface */ | ||
30 | #include "fmradio.h" | ||
31 | #include "fmradio_i2c.h" /* physical interface driver */ | ||
32 | #include "stfm1000.h" | ||
33 | |||
34 | void stfm1000_init(void) | ||
35 | { | ||
36 | } | ||
37 | |||
38 | int stfm1000_set(int setting, int value) | ||
39 | { | ||
40 | (void) setting; | ||
41 | (void) value; | ||
42 | return -1; | ||
43 | } | ||
44 | |||
45 | int stfm1000_get(int setting) | ||
46 | { | ||
47 | (void) setting; | ||
48 | return -1; | ||
49 | } \ No newline at end of file | ||