Description
Hi,
First of all, congrats for the tremendous work you guys have achieved !
I'm quite new to Micropython stuff, but succeeded however to compile it for a W5500_EVB_PICO board, and it's working like a charm. I even understood how to freeze some of my modules in the firmware to save RAM space.
As far as I can see in the rp2/lwip_inc/lwipopts.h file, there are two constants:
#define LWIP_DNS_SUPPORT_MDNS_QUERIES 1
#define LWIP_MDNS_RESPONDER 1
that supposedly implies some mDNS support to the lwip driver. This is confirmed by the fact that the port 5353 is busy as you cannot bind a socket to it. So far, so good. However, I do not see any API/Object/Function when doing an "import lwip" or any other module to take advantage of this mDNS support and publish my pico IP and services.
How can I do? Or shall these constants be put to 0 by default and I will have to write my own mDNS functions?
I thank you in advance for your advices.
Olivier.