1234567891011121314151617181920212223242526272829 |
-
-
- #ifndef __USB_CDC_H__
- #define __USB_CDC_H__
-
- #include <stddef.h>
- #include <stdint.h>
- #include <stdbool.h>
-
- void usb_cdc_write(const void *buf, size_t count);
- void usb_cdc_set_reroute(bool reroute);
-
- #endif
|