Add stubs so that portduino can build with wifi. cc @mc-hamster

This commit is contained in:
geeksville
2020-09-23 17:22:17 -07:00
parent 52a3927585
commit 9c0a0ad220
3 changed files with 2 additions and 1 deletions

16
src/nrf52/wifi-stubs.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "meshwifi/meshhttp.h"
#include "meshwifi/meshwifi.h"
void initWifi() {}
void deinitWifi() {}
bool isWifiAvailable()
{
return false;
}
void handleWebResponse() {}
/// Perform idle loop processing required by the wifi layer
void loopWifi() {}