How to build the bin file of ESP32-S3 WIZNET5K to support Ethernet communication #16237
-
I checked the following links and did not find instructions for building WIZNET5K or custom drivers Where can I find the relevant documentation? I need to build ESP32-S3 16MB and 4MB flash versions to support WIZNET5K Ethernet communication using W5500 |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 10 replies
-
MicroPython's support for WIZNET5K Ethernet modules is controlled by the MICROPY_PY_NETWORK_WIZNET5K configuration option. You have to enable this. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@littlegreenbean33 During the use, I still have a question: How to use WLAN and W5500 at the same time? For example, WLAN uses TCP to connect to server A, W5500 establishes a TCP server, and waits for the external TCP client to establish a connection. Both connections can be used normally. Can you share your experience or provide a simple demo code for reference? |
Beta Was this translation helpful? Give feedback.
-
The esp32 port already supports Wiznet W5500, but it uses a different method to configure it compared to other ports. See newly added docs here: https://docs.micropython.org/en/latest/esp32/quickref.html#spi-ethernet-interface (These docs weren't there at the time of this question.) |
Beta Was this translation helpful? Give feedback.
The esp32 port already supports Wiznet W5500, but it uses a different method to configure it compared to other ports. See newly added docs here: https://docs.micropython.org/en/latest/esp32/quickref.html#spi-ethernet-interface
(These docs weren't there at the time of this question.)