pill_6502/src/cdcacm.h

11 lines
411 B
C
Raw Normal View History

// vim: tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab
#include <libopencm3/usb/cdc.h>
extern const struct usb_interface_descriptor uart_comm_iface[];
extern const struct usb_interface_descriptor uart_data_iface[];
extern const struct usb_iface_assoc_descriptor uart_assoc;
void cdcacm_set_config(usbd_device *dev, uint16_t wValue);
2018-01-13 09:24:21 +00:00
void cdcacm_send_chunked_blocking(char *buf, int len, usbd_device *dev);