firmware/src/wifi-stubs.cpp

20 lines
249 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
2021-05-26 02:20:44 +00:00
#ifdef NO_ESP32
2021-01-10 02:27:03 +00:00
2021-01-10 03:15:10 +00:00
//#include "mesh/wifi/WiFiAPClient.h"
bool initWifi(bool forceSoftAP) {
return false;
}
void deinitWifi() {}
bool isWifiAvailable()
{
return false;
}
2021-01-10 02:27:03 +00:00
#endif