mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-22 02:32:23 +00:00
15 lines
316 B
C++
15 lines
316 B
C++
|
|
#include "meshwifi/WebServerThread.h"
|
||
|
|
#include <Arduino.h>
|
||
|
|
|
||
|
|
// Thread for the HTTP Server
|
||
|
|
WebServerThread webServerThread;
|
||
|
|
|
||
|
|
WebServerThread::WebServerThread() : concurrency::OSThread("WebServerThread") {}
|
||
|
|
|
||
|
|
int32_t WebServerThread::runOnce()
|
||
|
|
{
|
||
|
|
DEBUG_MSG("WebServerThread::runOnce()\n");
|
||
|
|
|
||
|
|
return (1000 * 1);
|
||
|
|
}
|