Arturo Guadalupi
Arturo Guadalupi
_From @cmaglie on November 15, 2012 18:39_ This is [Issue 569](http://code.google.com/p/arduino/issues/detail?id=569) moved from a Google Code project. Added by 2011-07-07T20:57:41.000Z by [[email protected]](http://code.google.com/u/108388509099941515037/). Please review that bug for more context and...
_From @cmaglie on November 15, 2012 19:3_ This is [Issue 1068](http://code.google.com/p/arduino/issues/detail?id=1068) moved from a Google Code project. Added by 2012-10-09T22:18:15.000Z by [[email protected]](http://code.google.com/u/115162173103504327487/). Please review that bug for more context and...
_From @cmaglie on November 15, 2012 19:3_ This is [Issue 1049](http://code.google.com/p/arduino/issues/detail?id=1049) moved from a Google Code project. Added by 2012-09-25T02:13:55.000Z by [[email protected]](http://code.google.com/u/107224959442840033725/). Please review that bug for more context and...
_From @PaulStoffregen on September 15, 2013 15:13_ `EthernetClient.cpp` in 1.5.x has old pre-1.0 `flush()` function that discards input. Arduino 1.0 changed `flush()` to complete transmission. https://github.com/arduino/Arduino/blob/ide-1.5.x/libraries/Ethernet/src/EthernetClient.cpp#L122 ```cpp void EthernetClient::flush() {...
_From @cmaglie on November 15, 2012 18:39_ This is [Issue 563](http://code.google.com/p/arduino/issues/detail?id=563) moved from a Google Code project. Added by 2011-06-23T18:16:38.000Z by [[email protected]](http://code.google.com/u/113064860665431431326/). Please review that bug for more context and...
_From @rhbroberg on February 11, 2016 16:52_ Being able to capture the amount of traffic being used on an interface would be very useful, especially in a situation where the...
_From @mji83 on May 14, 2013 17:58_ There's a hardcoded assumption in the following code in dhcp.cpp: printByte((char*)&(buffer[24]), _dhcpMacAddr[3]); printByte((char*)&(buffer[26]), _dhcpMacAddr[4]); printByte((char*)&(buffer[28]), _dhcpMacAddr[5]); This causes various failures with the DHCP...
_From @jonface on November 7, 2014 23:31_ Arduino v1.5.8 Problem: The source port for a client TCP connection is fixed to start from 1024. If the micro controller is connect...
_From @WildOrangutan on May 14, 2015 22:49_ Hi! Please implement something like this, to avoid w5100 buffer overflow, when constantly sending data as fast as possible: ``` C++ int EthernetClient::free()...