added SS define comment

This commit is contained in:
Denis Volpato Martins
2016-08-24 08:55:49 -03:00
parent b86a09792d
commit 4ee20074b2

View File

@@ -21,7 +21,7 @@ MFRC522::MFRC522() {
* Prepares the output pins. * Prepares the output pins.
*/ */
MFRC522::MFRC522( byte resetPowerDownPin ///< Arduino pin connected to MFRC522's reset and power down input (Pin 6, NRSTPD, active low) MFRC522::MFRC522( byte resetPowerDownPin ///< Arduino pin connected to MFRC522's reset and power down input (Pin 6, NRSTPD, active low)
): MFRC522(SS, resetPowerDownPin) { ): MFRC522(SS, resetPowerDownPin) { // SS is defined in pins_arduino.h
} // End constructor } // End constructor
/** /**
@@ -230,7 +230,7 @@ void MFRC522::PCD_Init() {
*/ */
void MFRC522::PCD_Init( byte resetPowerDownPin ///< Arduino pin connected to MFRC522's reset and power down input (Pin 6, NRSTPD, active low) void MFRC522::PCD_Init( byte resetPowerDownPin ///< Arduino pin connected to MFRC522's reset and power down input (Pin 6, NRSTPD, active low)
) { ) {
PCD_Init(SS, resetPowerDownPin); PCD_Init(SS, resetPowerDownPin); // SS is defined in pins_arduino.h
} // End PCD_Init() } // End PCD_Init()
/** /**