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
15
16
17
//! An implementation of the gateway network.
//!
//! The gateway network consists of three layers, implemented in their own modules:
//!
//! * [`physical`]
//! * [`link`]
//! * [`network`]
//! * [`application`]

pub mod application;
pub mod link;
pub mod network;
pub mod physical;

pub use application::PacketType;
pub use link::{LongAddress, ShortAddress, SlotCounter};
pub use network::NodeID;