mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 18:59:56 +00:00
20 lines
249 B
C++
20 lines
249 B
C++
//#include "mesh/wifi/WebServer.h"
|
|
#include "configuration.h"
|
|
|
|
#ifdef NO_ESP32
|
|
|
|
//#include "mesh/wifi/WiFiAPClient.h"
|
|
|
|
bool initWifi(bool forceSoftAP) {
|
|
return false;
|
|
}
|
|
|
|
void deinitWifi() {}
|
|
|
|
bool isWifiAvailable()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
#endif
|