Quirks

There were some silly quirks with timing when talking to the Ethernet module where you would have to wait a small amount of time before reading from the device, these were no big deal and easily over come.

The strangest quirk I found was not with the device, but with requesting data over Ethernet. I found that if broke my connection by just yanking power to my project that I would have to wait for the old connection to timeout before I could restore communications. I narrowed this down to the fact that I kept using the same port/socket. So I came up with this brilliant idea of using a randomly generated port, well then I realized that I was using a micro-controller and without extra hardware a random number wouldn't be very random.

However, the one cool thing was when waiting for the time out it would look like a failure to connect. Initially I had the code setup to just auto retry, which worked, but it would take a small but noticeable delay before the connection established. The simplest and most affective way I found to get around this was to modified my connection code to quickly increment the port/socket number if the connection failed and then retry. This completely removed any perceived delay and made the rest of my testing much quicker.