You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I am working with ESP WROOM32 module with SPI - W5500 module.
In wiznet5k.py, you have the following lines for resetting the W5500 chip.
if reset:
reset.on()
time.sleep(0.1)
reset.off()
time.sleep(0.1)
With this, the reset is pulled High and then set to Low, and continues in this state. Thus, the W5500 is set to the reset state, and does not respond.
If we write reset.off(), and then reset.on(), the chip responds.
Could you pl. clarify this?
The text was updated successfully, but these errors were encountered:
Hello
I am working with ESP WROOM32 module with SPI - W5500 module.
In wiznet5k.py, you have the following lines for resetting the W5500 chip.
if reset:
reset.on()
time.sleep(0.1)
reset.off()
time.sleep(0.1)
With this, the reset is pulled High and then set to Low, and continues in this state. Thus, the W5500 is set to the reset state, and does not respond.
If we write reset.off(), and then reset.on(), the chip responds.
Could you pl. clarify this?
The text was updated successfully, but these errors were encountered: