Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add close() method for SD #3654

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions libraries/SD/src/SD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,18 @@ boolean SDClass::begin(uint8_t csPin, uint32_t speed) {
root.openRoot(volume);
}


void SDClass::end() {
/*

Performs to end The SD Card and close the spi connection
and to able begin SD Card again without error

*/
root.close();
card.end();
}

// this little helper is used to traverse paths
SdFile SDClass::getParentDir(const char *filepath, int *index) {
// get parent directory
Expand Down
6 changes: 5 additions & 1 deletion libraries/SD/src/SD.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ class SDClass {
// This needs to be called to set up the connection to the SD card
// before other methods are used.
boolean begin(uint8_t csPin = SD_CHIP_SELECT_PIN, uint32_t speed = SPI_HALF_SPEED);


//Performs end The SD Card and close the spi connection
//and to able begin SD Card again without error
void end();

// Open the specified file/directory with the supplied mode (e.g. read or
// write, etc). Returns a File object for interacting with the file.
// Note that currently only one file can be open at a time.
Expand Down
7 changes: 7 additions & 0 deletions libraries/SD/src/utility/Sd2Card.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,13 @@ uint8_t Sd2Card::init(uint8_t sckRateID, uint8_t chipSelectPin) {
return false;
}
//------------------------------------------------------------------------------
/**
* End SPI Connection
*/
void Sd2Card::end(){
SPI.end();
}
//------------------------------------------------------------------------------
/**
* Enable or disable partial block reads.
*
Expand Down
4 changes: 4 additions & 0 deletions libraries/SD/src/utility/Sd2Card.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ class Sd2Card {
}
uint8_t init(uint8_t sckRateID, uint8_t chipSelectPin);
#endif
/**
* End SPI Connection
*/
void end();
void partialBlockRead(uint8_t value);
/** Returns the current value, true or false, for partial block read. */
uint8_t partialBlockRead(void) const {return partialBlockRead_;}
Expand Down