Description
Describe the Problem
I'm building an application with the w5500-evb-pico. Upon setting up the SPI and initializing the registers, I used the Udp::udp_bind
call to bind Sn0 to some port. However, this often blocks forever (or until the watchdog resets the chip). I've narrowed it down to
while self.sn_sr(sn)? != Ok(SocketStatus::Udp) {}
in udp_bind
being the problematic loop and the reason is that the SocketStatus is Closed for some reason. This happens more often than not and I'm not sure what the issue may be here. I've tried with 2 different wiznets and both experience the same problem.
Expected Behaviour
udp_bind
doesn't block.
Steps to Reproduce
Setup a w5500-evb-pico, connected over ethernet to a computer. Initialize the w5500 eh0 vdm
I can share some source code as well but it's not much different from what's here: https://github.com/newAM/w5500-issue-252/blob/main/src/main.rs, but I can try running that specifically to see if I have the same issue on that source.