DeterministicESPAsyncWebServer 1.2.0
Zero-allocation, bounded-execution async HTTP server for ESP32
Loading...
Searching...
No Matches
datalink.cpp
Go to the documentation of this file.
1// Copyright (C) 2026 Douglas Quigg (dstroy0) <dquigg123@gmail.com>
2// SPDX-License-Identifier: AGPL-3.0-or-later
3
4/**
5 * @file datalink.cpp
6 * @brief Layer 2 (Data Link) — IEEE 802.11 frame handling stub.
7 *
8 * All Layer 2 operations (WLAN MAC, frame assembly/disassembly, CSMA/CA)
9 * are handled by the Espressif WiFi driver and lwIP port. This function
10 * is provided as an architectural extension point.
11 */
12
13#include "datalink.h"
14
16{
17 // No-op: lwIP + Espressif WiFi driver owns all L2 operations.
18}