diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-01-25 01:37:39 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-01-25 01:37:39 +0000 |
| commit | 4bf024f872a0fce71b8861ef83a151fd758f3a6c (patch) | |
| tree | 16a3308c7bf382fa8e77279b36ac7afdab485da2 /firmware/export | |
| parent | e8e0b241bdaa20a6745c845c5a027b608524d8fb (diff) | |
| download | rockbox-4bf024f872a0fce71b8861ef83a151fd758f3a6c.zip rockbox-4bf024f872a0fce71b8861ef83a151fd758f3a6c.tar.gz rockbox-4bf024f872a0fce71b8861ef83a151fd758f3a6c.tar.bz2 rockbox-4bf024f872a0fce71b8861ef83a151fd758f3a6c.tar.xz | |
Generic USB serial driver on ISP1582
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8445 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/usb_serial.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/firmware/export/usb_serial.h b/firmware/export/usb_serial.h new file mode 100644 index 0000000..5daefee --- /dev/null +++ b/firmware/export/usb_serial.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * __________ __ ___. + * 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); + +#endif |