|
DeterministicESPAsyncWebServer v6.27.1
Zero-allocation, bounded-execution async HTTP server for ESP32
|
LoRa radio codec + driver (DETWS_ENABLE_LORA) - Semtech SX127x / RFM95-96. More...
#include "ServerConfig.h"Go to the source code of this file.
LoRa radio codec + driver (DETWS_ENABLE_LORA) - Semtech SX127x / RFM95-96.
A per-radio plugin for the gateway (DETWS_ENABLE_GATEWAY): the southbound-radio half of a LoRa-to-web bridge. Two layers:
to / from / id / flags) that virtually every hobby / sensor LoRa deployment uses on top of the header-less LoRa PHY. lora_frame_parse() splits a received frame into that header and the payload; lora_frame_build() prepends it. Pure, no hardware.Wiring to the gateway (see example 11.LoRaGateway): poll lora_recv(); on a frame, lora_frame_parse() then det_gw_uplink(port, header.from, payload, len, rssi). A downlink builds a frame with lora_frame_build() and lora_send()s it. The codec + register protocol are verified on the host; the RF link itself needs the module.
Definition in file lora.h.