From 9e9ff5733ed6c3acaad1ea425e0c3f30253d5f8c Mon Sep 17 00:00:00 2001 From: kellerkindt Date: Tue, 23 Mar 2021 23:42:42 +0100 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0560a52..f72eeb6 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ of the SPI implementation. It must be set up to work as the W5500 chip requires let mut spi = ...; // SPI interface to use let mut cs : OutputPin = ...; // chip select - // alternative FourWireRef::new(&mut spi, &mut spi) + // alternative FourWireRef::new(&mut spi, &mut cs) let device = UninitializedDevice::new(FourWire::new(spi, cs)) .initialize_manual( MacAddress::new(0, 1, 2, 3, 4, 5),