Update arduino-pico core and remove MDNS restriction (#5483)

This commit is contained in:
GUVWAF
2024-11-30 20:16:02 +01:00
committed by GitHub
parent 43b8972171
commit 9f4c8a2804
3 changed files with 5 additions and 9 deletions

View File

@@ -62,11 +62,7 @@ static void onNetworkConnected()
LOG_INFO("Start WiFi network services");
// start mdns
if (
#ifdef ARCH_RP2040
!moduleConfig.mqtt.enabled && // MDNS is not supported when MQTT is enabled on ARCH_RP2040
#endif
!MDNS.begin("Meshtastic")) {
if (!MDNS.begin("Meshtastic")) {
LOG_ERROR("Error setting up MDNS responder!");
} else {
LOG_INFO("mDNS Host: Meshtastic.local");