Files
firmware/src/wifi-stubs.cpp

18 lines
231 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
#ifndef NO_ESP32
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