From 4e8fffa767f5dc52d04cb4e74b63f9275a73b3ab Mon Sep 17 00:00:00 2001 From: Andrew Stone Date: Tue, 5 Jun 2012 21:10:09 -0400 Subject: [PATCH] just change a comment to make more sense --- libraries/SPI/SPI.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libraries/SPI/SPI.cpp b/libraries/SPI/SPI.cpp index 20686254a..5e48073f7 100644 --- a/libraries/SPI/SPI.cpp +++ b/libraries/SPI/SPI.cpp @@ -15,9 +15,7 @@ SPIClass SPI; void SPIClass::begin() { - // Set SS to high because many users use this as chip-select - // and most chips "select" when SS is high. If your chip - // does not, you can set it back to LOW after begin() is called. + // Set SS to high so a connected chip will be "deselected" by default digitalWrite(SS, HIGH); // When the SS pin is set as OUTPUT, it can be used as