summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-10-17 23:24:18 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-10-17 23:24:18 +0000
commit4adf929a90e1cc7bc559a69193a505166ddaba1b (patch)
treea436c69572d55459f2f5e46b282a2ef15fb04d0f /firmware/export
parentca45869a8866756c5c11cba307a7ff62566afb22 (diff)
downloadrockbox-4adf929a90e1cc7bc559a69193a505166ddaba1b.tar.gz
rockbox-4adf929a90e1cc7bc559a69193a505166ddaba1b.zip
Philips tuner supported
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5300 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/fmradio_i2c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/fmradio_i2c.h b/firmware/export/fmradio_i2c.h
index 06b7f9f7b7..b7007a80dd 100644
--- a/firmware/export/fmradio_i2c.h
+++ b/firmware/export/fmradio_i2c.h
@@ -20,7 +20,7 @@
20#ifndef FMRADIO_I2C_H 20#ifndef FMRADIO_I2C_H
21#define FMRADIO_I2C_H 21#define FMRADIO_I2C_H
22 22
23void fmradio_i2c_read(unsigned char* p_data); /* reads 5 byte */ 23int fmradio_i2c_write(int address, const unsigned char* buf, int count);
24void fmradio_i2c_set(const unsigned char* p_data); /* writes 5 bytes */ 24int fmradio_i2c_read(int address, unsigned char* buf, int count);
25 25
26#endif 26#endif