Expand description
The MAVLink message set.
§Message sets and the Message
trait
Each message set has its own module with corresponding data types, including a MavMessage
enum
that represents all possible messages in that message set. The Message
trait is used to
represent messages in an abstract way, and each MavMessage
enum implements this trait (for
example, [ardupilotmega::MavMessage
]). This is then monomorphized to the specific message
set you are using in your application at compile-time via type parameters. If you expect
ArduPilotMega-flavored messages, then you will need a MavConnection<ardupilotmega::MavMessage>
and you will receive ardupilotmega::MavMessage
s from it.
Some message sets include others. For example, all message sets except common
include the
common message set. This is represented with extra values in the MavMessage
enum: a message
in the common message set received on an ArduPilotMega connection will be an
ardupilotmega::MavMessage::common(common::MavMessage)
.
Please note that if you want to enable a given message set, you must also enable the
feature for the message sets that it includes. For example, you cannot use the ardupilotmega
feature without also using the uavionix
and icarous
features.
Modules§
- async_
peek_ reader tokio-1
This module implements a buffered/peekable reader using async I/O. - This module implements a buffered/peekable reader.
Structs§
- File
Connectable std
ortokio-1
- Encapsulation of the Mavlink message and the header, important to preserve information about the sender system and component id.
- Metadata from a MAVLink packet header
- Serial
Connectable std
ortokio-1
- Signing
Config signing
Configuration used for MAVLink 2 messages signing as defined in https://mavlink.io/en/guide/message_signing.html. - Signing
Data signing
MAVLink 2 message signing data. - TcpConnectable
std
ortokio-1
- UdpConnectable
std
ortokio-1
Enums§
- Connection
Address std
ortokio-1
- Versions of the Mavlink protocol that we support
Constants§
- Message framing marker for mavlink v1
- Message framing marker for mavlink v2
Traits§
- Async
Connectable tokio-1
- Async
MavConnection tokio-1
An async MAVLink connection - Connectable
std
- A MAVLink connection
Functions§
- connect
std
Connect to a MAVLink node by address string. - connect_
async tokio-1
Connect asynchronously to a MAVLink node by address string. - Read a MAVLink v1 message from a Read stream.
- read_
v1_ msg_ async tokio-1
Read a MAVLink v1 message from a Read stream. - Return a raw buffer with the mavlink message V1 maximum size is 263 bytes:
<https://mavlink.io/en/guide/serialization.html>
- read_
v1_ raw_ message_ async tokio-1
Return a raw buffer with the mavlink message V1 maximum size is 263 bytes:<https://mavlink.io/en/guide/serialization.html>
- Read a MAVLink v2 message from a Read stream.
- read_
v2_ msg_ async tokio-1
Async read a MAVLink v2 message from a Read stream. - read_
v2_ msg_ async_ signed tokio-1
andsigning
Async read a MAVLink v2 message from a Read stream. - read_
v2_ msg_ signed signing
Read a MAVLink v2 message from a Read stream. - Return a raw buffer with the mavlink message
- read_
v2_ raw_ message_ async tokio-1
Async read a raw buffer with the mavlink message V2 maximum size is 280 bytes:<https://mavlink.io/en/guide/serialization.html>
- read_
v2_ raw_ message_ async_ signed tokio-1
andsigning
Async read a raw buffer with the mavlink message with signing support V2 maximum size is 280 bytes:<https://mavlink.io/en/guide/serialization.html>
- read_
v2_ raw_ message_ signed signing
Return a raw buffer with the mavlink message with signing support - read_
versioned_ msg_ async tokio-1
- read_
versioned_ msg_ async_ signed tokio-1
andsigning
- read_
versioned_ msg_ signed signing
- Write a MAVLink v1 message to a Write stream.
- write_
v1_ msg_ async tokio-1
Async write a MAVLink v1 message to a Write stream. - Write a MAVLink v2 message to a Write stream.
- write_
v2_ msg_ async tokio-1
Async write a MAVLink v2 message to a Write stream. - write_
v2_ msg_ async_ signed signing
andtokio-1
Write a MAVLink v2 message to a Write stream with signing support. - write_
v2_ msg_ signed signing
Write a MAVLink v2 message to a Write stream with signing support. - Write a message using the given mavlink version
- write_
versioned_ msg_ async tokio-1
Async write a message using the given mavlink version - write_
versioned_ msg_ async_ signed tokio-1
andsigning
Async write a message with signing support using the given mavlink version - write_
versioned_ msg_ signed signing
Write a message with signing support using the given mavlink version