most of the changes needed to build native on Windows

This commit is contained in:
Kevin Hester
2021-05-25 05:08:57 +08:00
parent 4e8e85c9f1
commit abe95ae1a4
6 changed files with 4 additions and 11 deletions

17
src/wifi-stubs.cpp Normal file
View File

@@ -0,0 +1,17 @@
//#include "mesh/wifi/WebServer.h"
#include "configuration.h"
#ifndef NO_ESP32
//#include "mesh/wifi/WiFiAPClient.h"
void initWifi(bool forceSoftAP) {}
void deinitWifi() {}
bool isWifiAvailable()
{
return false;
}
#endif