Just some minor cleanup.

This commit is contained in:
Oliver Schmidt 2015-08-11 15:19:59 +02:00
parent 96402c8048
commit 16dfe30649
2 changed files with 2 additions and 3 deletions

View File

@ -113,7 +113,7 @@ Win32 communication peer for the test programs located in test/w5100_peer.c.
2.3 TCP Stream Split
A correct BSD TCP socket program never presumes to be able to read/write any
amount of data. Rather it is always prepared to call recv()/send() as often as
necessary receive/send the expected amount data in whatever chuncks - and the
necessary receive/send the expected amount data in whatever chunks - and the
very same holds true for any program using the W5100 TCP mode! But this already
necessary complexity in the upper layers allows to handle W5100 memory buffer
wraparounds transparently by artificially limiting the size of a read/write

View File

@ -69,7 +69,6 @@ void main(void)
{
printf("!");
}
printf(" All %d Len %d", all, len);
len = MIN(all, len);
for (i = 0; i < len; ++i)
{