⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/drivers/wifi/
mod.rs

1//! WiFi 802.11 Driver Stack
2//!
3//! Implements IEEE 802.11 MAC layer and WPA2/WPA3 authentication
4//! for wireless network connectivity.
5
6#[cfg(feature = "alloc")]
7pub mod mac80211;
8#[cfg(feature = "alloc")]
9pub mod wpa;