5 releases

0.2.2 Apr 22, 2024
0.2.1 Mar 6, 2024
0.2.0 Nov 13, 2023
0.1.1 Oct 3, 2020
0.1.0 Jul 24, 2019

#1193 in Hardware support

Download history 2196/week @ 2025-12-09 1944/week @ 2025-12-16 1758/week @ 2025-12-23 1772/week @ 2025-12-30 2345/week @ 2026-01-06 2410/week @ 2026-01-13 2688/week @ 2026-01-20 2688/week @ 2026-01-27 3945/week @ 2026-02-03 2596/week @ 2026-02-10 2817/week @ 2026-02-17 2527/week @ 2026-02-24 3720/week @ 2026-03-03 3733/week @ 2026-03-10 3993/week @ 2026-03-17 2557/week @ 2026-03-24

14,326 downloads per month
Used in 70 crates (65 directly)

MIT license

37KB
755 lines

usbd-serial

CDC-ACM USB serial port implementation for usb-device.

CDC-ACM is a USB class that's supported out of the box by most operating systems and used for implementing modems and generic serial ports. The SerialPort class implements a stream-like buffered serial port that can be used similarly to a normal UART.

The crate also contains CdcAcmClass which is a lower-level implementation that has less overhead, but requires more care to use correctly.

Example

A full example requires the use of a hardware-driver, but the hardware independent part is as follows:

let mut serial = SerialPort::new(&usb_bus);

let mut usb_dev = UsbDeviceBuilder::new(&usb_bus, UsbVidPid(0x16c0, 0x27dd))
    .product("Serial port")
    .device_class(USB_CLASS_CDC)
    .build();

loop {
    if !usb_dev.poll(&mut [&mut serial]) {
        continue;
    }

    let mut buf = [0u8; 64];

    match serial.read(&mut buf[..]) {
        Ok(count) => {
            // count bytes were read to &buf[..count]
        },
        Err(UsbError::WouldBlock) => // No data received
        Err(err) => // An error occurred
    };

    match serial.write(&[0x3a, 0x29]) {
        Ok(count) => {
            // count bytes were written
        },
        Err(UsbError::WouldBlock) => // No data could be written (buffers full)
        Err(err) => // An error occurred
    };
}

Dependencies

~2MB
~37K SLoC