From a924df8d6ddfa4372ce6b49c312e1da1ffceb2ad Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Sun, 31 Mar 2013 21:57:53 +0200 Subject: rk27xx: implement radio support Change-Id: I59d3905e9b2a3df8aa235e424c7a6e0eff6d73e9 Reviewed-on: http://gerrit.rockbox.org/427 Reviewed-by: Marcin Bukat Tested-by: Marcin Bukat --- .../rk27xx/rk27generic/fmradio-i2c-rk27generic.c | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 firmware/target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c (limited to 'firmware/target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c') diff --git a/firmware/target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c b/firmware/target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c new file mode 100644 index 0000000000..4ab171cd5a --- /dev/null +++ b/firmware/target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c @@ -0,0 +1,39 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2013 by Amaury Pouly + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#include "config.h" +#include "system.h" +#include "fmradio_i2c.h" +#include "i2c-rk27xx.h" + +void fmradio_i2c_init(void) +{ +} + +int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count) +{ + return i2c_write(address, -1, count, buf); +} + +int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count) +{ + return i2c_read(address, -1, count, buf); +} -- cgit v1.2.3