diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-21 09:56:56 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-21 09:56:56 +0100 |
commit | 4b6e85ca26ac9cacf578862688f3c2a77a9090a1 (patch) | |
tree | 5872f1d70b721861250c3f61cf1b70a2856f565d /stm/usb.h | |
parent | fa2162bc77b22fd135fd059219191ac91449b3fa (diff) | |
download | micropython-4b6e85ca26ac9cacf578862688f3c2a77a9090a1.tar.gz micropython-4b6e85ca26ac9cacf578862688f3c2a77a9090a1.zip |
Try to get REPL working, but bug with CDC VCP...
Diffstat (limited to 'stm/usb.h')
-rw-r--r-- | stm/usb.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,2 +1,5 @@ void usb_init(); -void usb_vcp_send(const char* str, int len); +int usb_vcp_rx_any(); +char usb_vcp_rx_get(); +void usb_vcp_send_str(const char* str); +void usb_vcp_send_strn(const char* str, int len); |