Skip to content
Snippets Groups Projects
Commit 8362bffb authored by Damien George's avatar Damien George
Browse files

stmhal: Document behaviour of usb_vcp_recv_byte.

parent ce23f67d
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ void pyb_usb_dev_stop(void); ...@@ -48,7 +48,7 @@ void pyb_usb_dev_stop(void);
bool usb_vcp_is_enabled(void); bool usb_vcp_is_enabled(void);
bool usb_vcp_is_connected(void); bool usb_vcp_is_connected(void);
void usb_vcp_set_interrupt_char(int c); void usb_vcp_set_interrupt_char(int c);
int usb_vcp_recv_byte(uint8_t *c); int usb_vcp_recv_byte(uint8_t *c); // if a byte is available, return 1 and put the byte in *c, else return 0
void usb_vcp_send_strn(const char* str, int len); void usb_vcp_send_strn(const char* str, int len);
void usb_vcp_send_strn_cooked(const char *str, int len); void usb_vcp_send_strn_cooked(const char *str, int len);
void usb_hid_send_report(uint8_t *buf); // 4 bytes for mouse: ?, x, y, ? void usb_hid_send_report(uint8_t *buf); // 4 bytes for mouse: ?, x, y, ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment