Files
firmware/src/wifi-stubs.cpp

18 lines
230 B
C++
Raw Normal View History

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