mavlink-dialects

Crates.iomavlink-dialects
lib.rsmavlink-dialects
version
sourcesrc
created_at2025-02-20 19:24:09.735405+00
updated_at2025-03-15 19:52:51.784247+00
descriptionA set of code generation utilities for MAVLink protocol.
homepagehttps://mavka.gitlab.io/home/projects/mavspec
repositoryhttps://gitlab.com/mavka/libs/mavspec
max_upload_size
id1563023
Cargo.toml error:TOML parse error at line 23, column 1 | 23 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Mykhailo Ziatin (Sitin)

documentation

README

MAVLink dialects bindings for MAVSpec

🇺🇦 
repository crates.io 
docs.rs 
issues

⚠️ All issues related to this crate should be submitted to MAVSpec.

MAVLink messages bindings based on MAVInspect.

This library is a part of MAVSpec code-generation toolchain and is intended to use alongside with it. However, nothing prevents you from using this crate independently.

Since MAVSpec is I/O agnostic, it and does not provide any abstractions for transferring MAVLink messages. If you want to communicate with MAVLink devices, use Mavio for embedded devices and simple tasks or Maviola for advanced I/O in std environments (for ground control stations, communication layers, and so on).

Upstream crates that use Mavka libraries toolchain can use Cargo patch mechanism to replace this crate and therefore change which dialects will be packaged.

Usage

This crate exposes dialects module where all MAVlink dialects can be found.

fn main() {
    let protocol = mavlink_dialects::common::Common;
    let common = protocol.get_dialect_by_name("common").unwrap();
    let heartbeat_message = common.get_message_by_name("HEARTBEAT").unwrap();
    assert_eq!(heartbeat_message.defined_in().unwrap(), "minimal");
}

Development

The main development workflow for this crate involves inclusion into MAVSpec as a submodule.

License

Here we simply comply with the suggested dual licensing according to Rust API Guidelines (C-PERMISSIVE).

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 70

cargo fmt