summaryrefslogtreecommitdiff
path: root/firmware/export/ifp_usb_serial.h
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2008-03-02 18:16:24 +0000
committerFrank Gevaerts <frank@gevaerts.be>2008-03-02 18:16:24 +0000
commit411b92948a7bb8f28afae546ffe5ad4ae61c4cf1 (patch)
treea0cc37b1988c5dc0f8db81c11d8d4edd4d542106 /firmware/export/ifp_usb_serial.h
parente57806acaa1afde1b04fc4b7f128fe34b818fba6 (diff)
move the ifp7xx usb serial driver files to more specific names, to make the "usb_serial" name available for more general usb class driver use
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16484 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/ifp_usb_serial.h')
-rw-r--r--firmware/export/ifp_usb_serial.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/firmware/export/ifp_usb_serial.h b/firmware/export/ifp_usb_serial.h
new file mode 100644
index 0000000000..32bb8525b4
--- /dev/null
+++ b/firmware/export/ifp_usb_serial.h
@@ -0,0 +1,28 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2006 by Tomasz Malesinski
+ *
+ * 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 _USB_SERIAL_H_
+#define _USB_SERIAL_H_
+
+void usb_serial_init(void);
+void usb_serial_put_byte(int b);
+int usb_serial_get_byte(void);
+int usb_serial_try_put_byte(int b);
+int usb_serial_try_get_byte(void);
+
+#endif