summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/SOURCES1
-rw-r--r--firmware/target/arm/imx233/creative-zenxfi2/fmradio-i2c-zenxfi2.c40
-rw-r--r--firmware/target/arm/imx233/system-imx233.c4
3 files changed, 43 insertions, 2 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 5cb464e6b1..c2bd45996c 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -1132,6 +1132,7 @@ target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
1132#endif /* CREATIVE_ZVx */ 1132#endif /* CREATIVE_ZVx */
1133 1133
1134#ifdef CREATIVE_ZENXFI2 1134#ifdef CREATIVE_ZENXFI2
1135target/arm/imx233/creative-zenxfi2/fmradio-i2c-zenxfi2.c
1135target/arm/imx233/creative-zenxfi2/backlight-zenxfi2.c 1136target/arm/imx233/creative-zenxfi2/backlight-zenxfi2.c
1136target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c 1137target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c
1137target/arm/imx233/creative-zenxfi2/button-zenxfi2.c 1138target/arm/imx233/creative-zenxfi2/button-zenxfi2.c
diff --git a/firmware/target/arm/imx233/creative-zenxfi2/fmradio-i2c-zenxfi2.c b/firmware/target/arm/imx233/creative-zenxfi2/fmradio-i2c-zenxfi2.c
new file mode 100644
index 0000000000..58ac8e6a08
--- /dev/null
+++ b/firmware/target/arm/imx233/creative-zenxfi2/fmradio-i2c-zenxfi2.c
@@ -0,0 +1,40 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2012 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "config.h"
23#include "system.h"
24#include "fmradio_i2c.h"
25#include "pinctrl-imx233.h"
26#include "i2c.h"
27
28void fmradio_i2c_init(void)
29{
30}
31
32int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count)
33{
34 return i2c_write(address, buf, count);
35}
36
37int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count)
38{
39 return i2c_read(address, buf, count);
40}
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index a24927f9a5..07c29a8644 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -110,8 +110,8 @@ void system_init(void)
110 imx233_pwm_init(); 110 imx233_pwm_init();
111 imx233_lradc_init(); 111 imx233_lradc_init();
112 imx233_i2c_init(); 112 imx233_i2c_init();
113#if !defined(BOOTLOADER) && \ 113#if !defined(BOOTLOADER) &&(defined(SANSA_FUZEPLUS) || \
114 (defined(SANSA_FUZEPLUS) || defined(CREATIVE_ZENXFI3)) 114 defined(CREATIVE_ZENXFI3) || defined(CREATIVE_ZENXFI2))
115 fmradio_i2c_init(); 115 fmradio_i2c_init();
116#endif 116#endif
117} 117}