diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-03 02:40:09 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-03 02:40:09 +0000 |
commit | 331c7d9255e7873d3583aceea6bd00c7360f2366 (patch) | |
tree | d0dfb9e1eb62e8e96ef14e01b013179118c6c6f1 /firmware/export/fmradio.h | |
parent | 86704740792ae81add713f4f4b619c57fee79e47 (diff) |
Finally, FM radio support on the FM Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3640 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/fmradio.h')
-rw-r--r-- | firmware/export/fmradio.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/export/fmradio.h b/firmware/export/fmradio.h new file mode 100644 index 0000000000..2877501361 --- /dev/null +++ b/firmware/export/fmradio.h @@ -0,0 +1,25 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Linus Nielsen Feltzing + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef FMRADIO_H +#define FMRADIO_H + +extern int fmradio_read(int addr); +extern void fmradio_set(int addr, int data); + +#endif |