taptap 0.1.1

An implementation of the Tigo TAP protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! An implementation of the gateway network.
//!
//! The gateway network consists of three layers, implemented in their own modules:
//!
//! * [`physical`]
//! * [`link`]
//! * [`transport`]

pub mod physical;

pub mod link;
pub use link::{Frame, GatewayID};

pub mod transport;