File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
libraries/Ethernet/src/utility Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ void W5x00Class::init(void)
91
91
RBASE[i] = RXBUF_BASE + RSIZE * i;
92
92
}
93
93
} else if (chipset == W5x00Chipset::W5200) {
94
- sockets = 4 ;
94
+ sockets = 8 ;
95
95
SPI.beginTransaction (SPI_ETHERNET_SETTINGS);
96
96
writeMR (1 <<RST);
97
97
for (uint8_t i=0 ; i<sockets; i++) {
Original file line number Diff line number Diff line change @@ -343,8 +343,8 @@ class W5x00Class {
343
343
static const uint16_t SSIZE = 2048 ; // Max Tx buffer size
344
344
private:
345
345
static const uint16_t RSIZE = 2048 ; // Max Rx buffer size
346
- uint16_t SBASE[4 ]; // Tx buffer base address
347
- uint16_t RBASE[4 ]; // Rx buffer base address
346
+ uint16_t SBASE[8 ]; // Tx buffer base address
347
+ uint16_t RBASE[8 ]; // Rx buffer base address
348
348
349
349
private:
350
350
inline static void initSS () { pinMode (SPI_CS, OUTPUT); }
You can’t perform that action at this time.
0 commit comments