Update W55RP20 example for proper CS pin (#2906)

Fixes #2903
This commit is contained in:
Earle F. Philhower, III 2025-04-15 08:17:47 -07:00 committed by GitHub
parent 073094fe0e
commit 9ac7892bd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@
const char* host = "djxmmx.net";
const uint16_t port = 17;
Wiznet55rp20lwIP eth(1 /* chip select */);
Wiznet55rp20lwIP eth(20 /* chip select */);
void setup() {
Serial.begin(115200);

View file

@ -51,7 +51,7 @@ public:
Constructor that uses the default hardware SPI pins
@param cs the Arduino Chip Select / Slave Select pin (default 10)
*/
Wiznet55rp20(int8_t cs = SS, SPIClass& spi = SPI, int8_t intr = -1);
Wiznet55rp20(int8_t cs = WIZNET_PIO_SPI_CS_PIN, SPIClass& spi = SPI, int8_t intr = -1);
//Wiznet55rp20();
/**