awdl-frame-parser 0.4.1

A parser for AWDL data and action frames.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![forbid(unsafe_code)]

#[cfg(test)]
extern crate alloc;

/// Structures related to AWDL action frames.
pub mod action_frame;
/// Structures, which are shared between multiple TLVs and frame types.
pub mod common;
pub mod data_frame;
/// Every TLV currently understood.
pub mod tlvs;