2014-02-01 16:04:34 +00:00
|
|
|
#define VCP_CHAR_NONE (0)
|
2014-02-16 21:36:03 +00:00
|
|
|
#define VCP_CHAR_CTRL_A (1)
|
|
|
|
#define VCP_CHAR_CTRL_B (2)
|
2014-02-01 16:04:34 +00:00
|
|
|
#define VCP_CHAR_CTRL_C (3)
|
|
|
|
#define VCP_CHAR_CTRL_D (4)
|
|
|
|
|
2014-01-26 17:41:01 +00:00
|
|
|
void pyb_usb_dev_init(void);
|
2013-10-23 19:39:20 +00:00
|
|
|
bool usb_vcp_is_enabled(void);
|
2014-02-01 13:47:15 +00:00
|
|
|
bool usb_vcp_is_connected(void);
|
2014-02-01 16:04:34 +00:00
|
|
|
void usb_vcp_set_interrupt_char(int c);
|
2013-10-23 19:39:20 +00:00
|
|
|
int usb_vcp_rx_any(void);
|
|
|
|
char usb_vcp_rx_get(void);
|
2013-10-21 08:56:56 +00:00
|
|
|
void usb_vcp_send_str(const char* str);
|
|
|
|
void usb_vcp_send_strn(const char* str, int len);
|
2013-10-22 20:13:36 +00:00
|
|
|
void usb_vcp_send_strn_cooked(const char *str, int len);
|
2013-10-25 19:53:54 +00:00
|
|
|
void usb_hid_send_report(uint8_t *buf); // 4 bytes for mouse: ?, x, y, ?
|
2014-01-13 00:20:06 +00:00
|
|
|
|
2014-01-26 17:41:01 +00:00
|
|
|
void pyb_usb_host_init(void);
|
|
|
|
void pyb_usb_host_process(void);
|
|
|
|
uint pyb_usb_host_get_keyboard(void);
|