Make wifi optional and exclude from nrf52 builds

This commit is contained in:
geeksville
2020-09-18 10:48:39 -07:00
parent 9624cc3798
commit 6e5e5822aa
8 changed files with 117 additions and 102 deletions

13
src/nrf52/wifi-nrf52.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "meshwifi/meshhttp.h"
#include "meshwifi/meshwifi.h"
void initWifi() {}
void deinitWifi() {}
bool isWifiAvailable()
{
return false;
}
void handleWebResponse() {}