diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-19 13:48:43 +0200 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-05-19 16:10:52 +0200 |
commit | b422be9bd0ddf517c6e7b804cb161f843939b1e0 (patch) | |
tree | 0cbf796f6e2f69a3792a9057655389686bdeb2e6 /firmware/drivers | |
parent | deb61e0622f58b58b6f61d1822054df04cf09456 (diff) | |
download | rockbox-b422be9bd0ddf517c6e7b804cb161f843939b1e0.tar.gz rockbox-b422be9bd0ddf517c6e7b804cb161f843939b1e0.zip |
Add stub STFM1000 tuner driver
Change-Id: I7f82f7b8971de75c92f84d12aaddccc50f3e47b1
Diffstat (limited to 'firmware/drivers')
-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 | ||