Using an USR-ES1 ethernet module with Micropython PYBv1.1 STM32F405RG #11486
Unanswered
NajibOladosu
asked this question in
STM32 / Pyboard
Replies: 1 comment
-
This is the code I'm running to test the module
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use an USR-ES1 ethernet module with my Pyboard and since the ethernet module has a W5500 chip, it thought the WIZNET5k library would work flawlessly but i keep having issues even after compiling the micropython firmware again. Whenever i run
nic.ifconfig('dhcp')
I don't get any response and it just keeps processing that command. So I decided to use static IP but when I runnic.ifconfig(("192.168.1.78", "255.255.255.0", "192.168.1.1", "8.8.8.8"))
andprint(nic.ifconfig())
, I get('0.0.0.0', '255.255.255.0', '0.0.0.0', '8.8.8.8')
. What can i do to fix this?Beta Was this translation helpful? Give feedback.
All reactions