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
//! # MAVLink protocol
//!
//! This module contains MAVLink protocol abstraction. Most of them (such as MAVLink [`Frame`]) are
//! re-exported from [`Mavio`](https://crates.io/crates/mavio). A few additional abstractions are
//! related to a high-level nature of Maviola library. All exports from Mavio are marked with
//! <sup>[`mavio`](https://crates.io/crates/mavio)</sup>.
//!
//! MAVSpec entities are also re-exported and marked with
//! <sup>[`mavspec`](https://crates.io/crates/mavspec)</sup>.
//!
//! ## Dialects
//!
//! MAVLink dialects available at [`dialects`] module and require corresponding `dlct-*` feature
//! flag to be enabled. However, [`minimal`](dialects::minimal) dialect is always available.
//!
//! ## Derive Macros
//!
//! If `derive` feature is enabled, we also import [`derive`](mod@derive) macros from
//! [`MAVSpec`](https://crates.io/crates/mavspec). If you want to use these macros, make sure that
//! you've imported [`mavspec`] either from [`maviola::protocol::mavspec`](mavspec) or through
//! [`maviola::prelude`](crate::prelude).
//!
//! You should enable `derive` feature flag to access this functionality.
//!
//! ## MAVLink Microservices
//!
//! MAVLink [microservices](https://mavlink.io/en/services/) are generated as a part of the
//! [default dialect](default_dialect). You can access them via [`default_dialect::microservices`].
//! Make sure that you've enabled corresponding `msrv-*` feature flag.
//!
//! Additional microservice utils are available as [`microservices`] and require `msrv-utils-*`
//! feature flags to be enabled.
//!
//! ## Message Definitions
//!
//! MAVLink [message definitions](https://gitlab.com/mavka/spec/protocols/mavlink/message-definitions-v1.0)
//! can be accessed via [`definitions`] and require `definitions` feature flag to be enabled.
pub use ;
pub use KnownDialects;
pub use Peer;
pub use FrameProcessor;
pub use ;
pub use ;
pub ;
/// <sup>[`mavio`](https://crates.io/crates/mavio)</sup>
pub use *;
/// <sup>[`mavio`](https://crates.io/crates/mavio)</sup>
pub use MavSha256;
pub use *;