Browse Source

DataFlash: fixed sense of card detect

master
Andrew Tridgell 13 years ago
parent
commit
bd9488f1e4
  1. 2
      libraries/DataFlash/DataFlash_APM2.cpp

2
libraries/DataFlash/DataFlash_APM2.cpp

@ -153,7 +153,7 @@ void DataFlash_APM2::ReadManufacturerID() @@ -153,7 +153,7 @@ void DataFlash_APM2::ReadManufacturerID()
// This function return 1 if Card is inserted on SD slot
bool DataFlash_APM2::CardInserted()
{
return (digitalRead(DF_CARDDETECT) != 0);
return (digitalRead(DF_CARDDETECT) == 0);
}
// Read the status register

Loading…
Cancel
Save