maviola 0.3.0

High-level MAVLink communication library with support for essential micro-services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # MAVLink network
//!
//! A network is a collection of nodes with different underlying transports.
//!
//! Each message received by one node will be broadcast to other nodes. More specifically, the
//! broadcast operates on the level of channels. That means, that if, for example, a server node
//! receives a message from one of its clients, then this message will be forwarded to all other
//! clients of this server and all other nodes.

mod base;
pub(crate) mod types;

pub use base::Network;