firmware/src/wifi-stubs.cpp

18 lines
231 B
C++
Raw Normal View History

2021-01-10 02:09:16 +00:00
//#include "mesh/wifi/WebServer.h"
2021-01-10 03:06:34 +00:00
#include "configuration.h"
2021-01-10 02:27:03 +00:00
#ifndef NO_ESP32
2021-01-10 03:15:10 +00:00
//#include "mesh/wifi/WiFiAPClient.h"
2020-12-13 02:33:52 +00:00
void initWifi(bool forceSoftAP) {}
void deinitWifi() {}
bool isWifiAvailable()
{
return false;
}
2021-01-10 02:27:03 +00:00
#endif