library for USB CDC ACM communication (API) More...
Go to the source code of this file.
Macros | |
#define | CDCACM_BUFFER 64 |
transmit and receive buffer sizes | |
Functions | |
void | cdcacm_setup (void) |
setup USB CDC ACM peripheral | |
char | cdcacm_getchar (void) |
get character received over USB (blocking) More... | |
void | cdcacm_putchar (char c) |
send character over USB (non-blocking) More... | |
Variables | |
volatile uint8_t | cdcacm_received |
how many bytes available in the received buffer since last read | |
char cdcacm_getchar | ( | void | ) |
get character received over USB (blocking)
Definition at line 379 of file usb_cdcacm.c.
void cdcacm_putchar | ( | char | c | ) |
send character over USB (non-blocking)
[in] | c | character to send |
Definition at line 391 of file usb_cdcacm.c.