ax25/
lib.rs

1//! AX.25 packets in Rust.
2
3#![cfg_attr(all(not(test), not(feature = "std")), no_std)]
4
5extern crate alloc;
6
7/// Encoding and decoding AX.25 v2.0 frames between raw bytes and strongly typed structures.
8pub mod frame;