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

#15 in Hardware support

Download history 2375/week @ 2024-07-22 2614/week @ 2024-07-29 2666/week @ 2024-08-05 4265/week @ 2024-08-12 6300/week @ 2024-08-19 4692/week @ 2024-08-26 6305/week @ 2024-09-02 3810/week @ 2024-09-09 3054/week @ 2024-09-16 3299/week @ 2024-09-23 2808/week @ 2024-09-30 2554/week @ 2024-10-07 2972/week @ 2024-10-14 3462/week @ 2024-10-21 3622/week @ 2024-10-28 3590/week @ 2024-11-04

13,959 downloads per month
Used in 64 crates (59 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

~1.5MB
~32K SLoC