1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#![warn(missing_docs)]
#![deny(rustdoc::broken_intra_doc_links)]
//! # Autogenerated MAVLink dialects
//!
//! > *Generated by [`MAVSpec`](https://gitlab.com/mavka/libs/mavspec)*
//!
//! Each dialect is packaged into a module with corresponding (`snake_cased`) name.
#[cfg(not(doctest))]
pub mod development;
#[cfg(not(doctest))]
pub mod minimal;
#[cfg(not(doctest))]
pub mod python_array_test;
#[cfg(not(doctest))]
pub mod test;
#[cfg(not(doctest))]
pub mod storm32;
#[cfg(not(doctest))]
pub mod matrixpilot;
#[cfg(not(doctest))]
pub mod icarous;
#[cfg(not(doctest))]
pub mod asluav;
#[cfg(not(doctest))]
pub mod cubepilot;
#[cfg(not(doctest))]
pub mod common;
#[cfg(not(doctest))]
pub mod ardupilotmega;
#[cfg(not(doctest))]
pub mod all;
#[cfg(not(doctest))]
pub mod standard;
#[cfg(not(doctest))]
pub mod cs_air_link;
#[cfg(not(doctest))]
pub mod u_avionix;
#[cfg(not(doctest))]
pub mod paparazzi;
#[cfg(not(doctest))]
pub mod avssuas;
#[cfg(not(doctest))]
pub mod ualberta;
#[doc(inline)]
#[cfg(not(doctest))]
pub use development::Development;
#[doc(inline)]
#[cfg(not(doctest))]
pub use minimal::Minimal;
#[doc(inline)]
#[cfg(not(doctest))]
pub use python_array_test::PythonArrayTest;
#[doc(inline)]
#[cfg(not(doctest))]
pub use test::Test;
#[doc(inline)]
#[cfg(not(doctest))]
pub use storm32::Storm32;
#[doc(inline)]
#[cfg(not(doctest))]
pub use matrixpilot::Matrixpilot;
#[doc(inline)]
#[cfg(not(doctest))]
pub use icarous::Icarous;
#[doc(inline)]
#[cfg(not(doctest))]
pub use asluav::Asluav;
#[doc(inline)]
#[cfg(not(doctest))]
pub use cubepilot::Cubepilot;
#[doc(inline)]
#[cfg(not(doctest))]
pub use common::Common;
#[doc(inline)]
#[cfg(not(doctest))]
pub use ardupilotmega::Ardupilotmega;
#[doc(inline)]
#[cfg(not(doctest))]
pub use all::All;
#[doc(inline)]
#[cfg(not(doctest))]
pub use standard::Standard;
#[doc(inline)]
#[cfg(not(doctest))]
pub use cs_air_link::CsAirLink;
#[doc(inline)]
#[cfg(not(doctest))]
pub use u_avionix::UAvionix;
#[doc(inline)]
#[cfg(not(doctest))]
pub use paparazzi::Paparazzi;
#[doc(inline)]
#[cfg(not(doctest))]
pub use avssuas::Avssuas;
#[doc(inline)]
#[cfg(not(doctest))]
pub use ualberta::Ualberta;