Merge remote-tracking branch 'remotes/origin/master' into remove-softap

This commit is contained in:
Thomas Göttgens
2022-10-26 17:54:21 +02:00
21 changed files with 418 additions and 44 deletions

27
src/network-stubs.cpp Normal file
View File

@@ -0,0 +1,27 @@
#include "configuration.h"
#if (HAS_WIFI == 0)
bool initWifi() {
return false;
}
void deinitWifi() {}
bool isWifiAvailable() {
return false;
}
#endif
#if (HAS_ETHERNET == 0)
bool initEthernet() {
return false;
}
bool isEthernetAvailable() {
return false;
}
#endif