mavinspect 0.1.0-alpha2

MAVInspect is a CLI tool and a library to parse and inspect MAVLink protocol XML definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod inspector;
pub use inspector::MAVInspector;

mod xml_definition;
pub use xml_definition::MavLinkXmlDialectDefinition;

mod xml;
pub use xml::XmlParser;

/// Errors related to XML entities parsing
pub mod errors;