|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
-
-
- #include "usb_dev.h"
-
-
- #if defined(CDC2_STATUS_INTERFACE) && defined(CDC2_DATA_INTERFACE)
-
- #if F_CPU >= 20000000
- #include "usb_serial_port.h"
-
- struct usb_serial_port usb_serial2_instance = {
- .cdc_rx_endpoint = CDC2_RX_ENDPOINT,
- .cdc_tx_endpoint = CDC2_TX_ENDPOINT,
- .cdc_tx_size = CDC2_TX_SIZE,
- };
- #endif
-
- #endif
|