cu-msp-src

Crates.iocu-msp-src
lib.rscu-msp-src
version0.9.1
created_at2025-03-13 16:46:45.961802+00
updated_at2025-09-12 20:23:40.200887+00
descriptionThis is the source side of an MSP (Multiwii Serial Protocol) for Copper.
homepagehttps://github.com/copper-project
repositoryhttps://github.com/copper-project/copper-rs
max_upload_size
id1591137
size87,754
Guillaume Binet (gbin)

documentation

README

MSP (MultiWii Serial Protocol) source (reading side)

This component is responsible for reading the MSP (MultiWii Serial Protocol) messages from the serial port.

It can be used standalone or in pair with the MSP sink component for the writing side.

Configuration

Example in your Copper configuration file:

    tasks: [
        (
            id: "mspsrc",
            type: "cu_msp_src::MSPSrc",
            config: {
                "device": "/dev/ttyS4",
                "baudrate": 1_000_000,
            },
        ),
   ]

Output

It will feed a MspResponseBatch with all the MspResponses it can read from the serial port at that time.

Commit count: 741

cargo fmt