fredlcore
fredlcore
What exactly is it that you cannot confirm? I can reproduce here that after doing a full clean or `rm .pio`, the dependencies are not immediately pursued. I have to...
Maybe I wasn't expressing myself accurately, what I mean is this: 1. I encounter the problem 2. I remove the `.pio` folder 3. Then I have to save `platformio.ini` in...
Obviously this is a major update and that's why I asked whether this function will be implemented in the foreseeable future. I did check the code, the function has not...
Ah, I didn't realize the name change - it was just "close()" in version 1.1.2. However, it doesn't make a difference whether I use socketClose or socketDisconnect - both just...
Ok, that might be pointing in the right direction, because EthernetClass::socketBegin has these lines right at the beginning: `#if MAX_SOCK_NUM > 4 if (chip == 51) maxindex = 4; //...
I figured out what caused the "freeze": When you close a socket, W5100::execCmdSn is called. This function first sends the given command (here: SOCK_CLOSE or SOCK_DISCON) and then waits for...
Sorry, I'm confused, the function I'm talking about is this: `void W5100Class::execCmdSn(SOCKET s, SockCMD _cmd) { // Send command to socket writeSnCR(s, _cmd); // Wait for command to complete while...
Oh, then I appreciate your efforts even more :)... I'll give it a try tomorrow, it's 1:30am here already, need to get some sleep ;)...
Thanks, this is how I did it, basically the same as you suggested, with two log outputs on serial added: void W5100Class::execCmdSn(SOCKET s, SockCMD _cmd) { // Send command to...
Wow, thanks, this is really extensive and valuable information! I was thinking of first looking into potential differences between the way versions 1.1.2 and 2.0.0 address this matter, only to...