cu-msp-sink

Crates.iocu-msp-sink
lib.rscu-msp-sink
version0.9.1
created_at2025-03-13 16:46:49.448704+00
updated_at2025-09-12 20:23:53.702339+00
descriptionThis is the sink side of an MSP (Multiwii Serial Protocol) for Copper.
homepagehttps://github.com/copper-project
repositoryhttps://github.com/copper-project/copper-rs
max_upload_size
id1591138
size57,969
Guillaume Binet (gbin)

documentation

README

MSP (MultiWii Serial Protocol) sink (writing side)

This component is responsible for MSP (MultiWii Serial Protocol) messages on a serial port.

It can be used standalone or in pair with the MSP source component for the reading side.

Configuration

Example in your Copper configuration file:

    tasks: [
        (
            id: "mspsink",
            type: "cu_msp_sink::MSPSink",
            config: {
                "device": "/dev/ttyS4",
                "baudrate": 1_000_000,
            },
        ),
   ]

Input

MspRequestBatch: a set of MspRequests to be sent to the serial port.

Commit count: 741

cargo fmt