WIZ_Ethernet_Library icon indicating copy to clipboard operation
WIZ_Ethernet_Library copied to clipboard

Features: setting socket memory sizes and skipping read bytes

Open tobiasebsen opened this issue 11 years ago • 0 comments

This pull request adds two features:

  1. Setting the RX/TX memory sizes of sockets by using:
uint16_t sizes[4] = {8192,0,0,0}; // 8 Kb memory to the first socket
W5100.setRXMemorySizes(sizes);
W5100.setTXMemorySizes(sizes);
  1. Adding a skip function to allow faster flushing of the input.

tobiasebsen avatar Feb 12 '14 16:02 tobiasebsen