circuitpython/stm/usb.h

7 lines
179 B
C
Raw Normal View History

2013-10-19 10:37:09 -04:00
void usb_init();
2013-10-21 18:46:04 -04:00
bool usb_vcp_is_enabled();
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);