Minor cleanups and fixes

This commit is contained in:
Oleg Kalachev
2025-01-17 12:30:12 +03:00
parent 740121a88e
commit b19270f14e
3 changed files with 1 additions and 3 deletions

View File

@@ -33,7 +33,6 @@ void setup() {
#endif
setupIMU();
setupRC();
setLED(false);
Serial.println("Initializing complete");
}

View File

@@ -19,7 +19,6 @@ WiFiUDP udp;
void setupWiFi() {
Serial.println("Setup Wi-Fi");
WiFi.softAP(WIFI_SSID, WIFI_PASSWORD);
IPAddress myIP = WiFi.softAPIP();
udp.begin(WIFI_UDP_PORT);
}