Make mDNS on rp2040 work (#3936)

This commit is contained in:
Jesse Hills
2022-10-25 16:23:20 +13:00
committed by GitHub
parent f8ce597918
commit 702b60ce66
3 changed files with 26 additions and 20 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ class MDNSComponent : public Component {
void setup() override;
void dump_config() override;
#if defined(USE_ESP8266) && defined(USE_ARDUINO)
#if (defined(USE_ESP8266) || defined(USE_RP2040)) && defined(USE_ARDUINO)
void loop() override;
#endif
float get_setup_priority() const override { return setup_priority::AFTER_WIFI; }