esp-csi-rs 0.5.0

ESP CSI Driver for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Peripheral-node operating modes.
//!
//! A *peripheral* node is the responder in a CSI session. It either replies
//! to a central's ESP-NOW control frames ([`esp_now`](self::esp_now)) or
//! runs in promiscuous sniffer mode (handled directly in
//! [`crate::run_node`] via the Wi-Fi sniffer API rather than as a submodule
//! here).

/// Peripheral-side ESP-NOW driver: receives control packets from the
/// central and sends timestamped replies for latency telemetry.
pub mod esp_now;