Skip to content

Commit 202f1bc

Browse files
committed
Fix compile guards
1 parent 87a66c7 commit 202f1bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firmware/RTK_Everywhere/Developer.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ void webServerUpdate() {}
180180
bool espNowStart() {return false;}
181181
bool espNowStop() {return false;}
182182

183+
bool espnowGetState() {return ESPNOW_OFF;}
183184
bool espnowIsPaired() {return false;}
184185
void espnowProcessRTCM(byte incoming) {}
185186
esp_err_t espnowRemovePeer(uint8_t *peerMac) {return ESP_OK;}
@@ -202,7 +203,7 @@ void menuWiFi() {systemPrintln("**WiFi not compiled**");}
202203
bool wifiApIsRunning() {return false;}
203204
bool wifiConnect(bool startWiFiStation, bool startWiFiAP, unsigned long timeout) {return false;}
204205
uint32_t wifiGetStartTimeout() {return 0;}
205-
#define WIFI_IS_RUNNING()
206+
#define WIFI_IS_RUNNING() 0
206207
int wifiNetworkCount() {return 0;}
207208
void wifiResetThrottleTimeout() {}
208209
void wifiResetTimeout() {}

0 commit comments

Comments
 (0)