mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-30 11:23:53 +00:00
15 lines
289 B
C++
15 lines
289 B
C++
#include "mesh/wifi/WebServerThread.h"
|
|
#include <Arduino.h>
|
|
|
|
WebServerThread *webServerThread;
|
|
|
|
WebServerThread::WebServerThread() : concurrency::OSThread("WebServerThread") {}
|
|
|
|
int32_t WebServerThread::runOnce()
|
|
{
|
|
DEBUG_MSG("WebServerThread::runOnce()\n");
|
|
|
|
return (1000 * 1);
|
|
}
|
|
|