mirror of
https://github.com/oe3cjb/TTGO-T-Beam-LoRa-APRS.git
synced 2026-03-19 03:04:44 +01:00
19 lines
321 B
C
19 lines
321 B
C
#include <Arduino.h>
|
|
#include <WiFi.h>
|
|
#include <WebServer.h>
|
|
#include <ESPmDNS.h>
|
|
#include <Update.h>
|
|
|
|
#ifndef TASK_WEBSERVER
|
|
#define TASK_WEBSERVER
|
|
|
|
|
|
#ifdef KISS_PROTOCOL
|
|
extern WiFiServer tncServer;
|
|
#endif
|
|
typedef struct {
|
|
String callsign;
|
|
} tWebServerCfg;
|
|
|
|
[[noreturn]] void taskWebServer(void *parameter);
|
|
#endif |