summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-02-03 23:28:53 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-02-03 23:28:53 +0000
commitc4d24a07abe2e6adce3cb4ba28d6e60438db89a2 (patch)
tree351bf0dec49704f198fdb162fcc95cfabde79010 /firmware/export
parent507120c1b397320cb69eb028318c698b00397a3f (diff)
downloadrockbox-c4d24a07abe2e6adce3cb4ba28d6e60438db89a2.zip
rockbox-c4d24a07abe2e6adce3cb4ba28d6e60438db89a2.tar.gz
rockbox-c4d24a07abe2e6adce3cb4ba28d6e60438db89a2.tar.bz2
rockbox-c4d24a07abe2e6adce3cb4ba28d6e60438db89a2.tar.xz
Added non-blocking get/put_byte routines.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8556 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/usb_serial.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/usb_serial.h b/firmware/export/usb_serial.h
index 5daefee..32bb852 100644
--- a/firmware/export/usb_serial.h
+++ b/firmware/export/usb_serial.h
@@ -22,5 +22,7 @@
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