Skip to content

Commit

Permalink
Fix onboard SD card support for Teensy 3.6 & 4.1 (MarlinFirmware#19593)
Browse files Browse the repository at this point in the history
  • Loading branch information
bilsef authored and thinkyhead committed Oct 16, 2020
1 parent 4d1357e commit 90801f8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Marlin/src/sd/Sd2Card.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,13 @@ bool Sd2Card::eraseSingleBlockEnable() {
* The reason for failure can be determined by calling errorCode() and errorData().
*/
bool Sd2Card::init(const uint8_t sckRateID, const pin_t chipSelectPin) {
#if IS_TEENSY_35_36 || IS_TEENSY_40_41
chipSelectPin_ = BUILTIN_SDCARD;
const uint8_t ret = SDHC_CardInit();
type_ = SDHC_CardGetType();
return (ret == 0);
#endif

errorCode_ = type_ = 0;
chipSelectPin_ = chipSelectPin;
// 16-bit init start time allows over a minute
Expand Down Expand Up @@ -332,6 +339,10 @@ bool Sd2Card::init(const uint8_t sckRateID, const pin_t chipSelectPin) {
* \return true for success, false for failure.
*/
bool Sd2Card::readBlock(uint32_t blockNumber, uint8_t* dst) {
#if IS_TEENSY_35_36 || IS_TEENSY_40_41
return 0 == SDHC_CardReadBlock(dst, blockNumber);
#endif

if (type() != SD_CARD_TYPE_SDHC) blockNumber <<= 9; // Use address if not SDHC card

#if ENABLED(SD_CHECK_AND_RETRY)
Expand Down Expand Up @@ -547,6 +558,10 @@ bool Sd2Card::waitNotBusy(const millis_t timeout_ms) {
bool Sd2Card::writeBlock(uint32_t blockNumber, const uint8_t* src) {
if (ENABLED(SDCARD_READONLY)) return false;

#if IS_TEENSY_35_36 || IS_TEENSY_40_41
return 0 == SDHC_CardWriteBlock(src, blockNumber);
#endif

bool success = false;
if (type() != SD_CARD_TYPE_SDHC) blockNumber <<= 9; // Use address if not SDHC card
if (!cardCommand(CMD24, blockNumber)) {
Expand Down
5 changes: 5 additions & 0 deletions Marlin/src/sd/Sd2Card.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ uint8_t const SD_CARD_TYPE_SD1 = 1, // Standard capacity V1
#define SOFTWARE_SPI
#endif

#if IS_TEENSY_35_36 || IS_TEENSY_40_41
#include "NXP_SDHC.h"
#define BUILTIN_SDCARD 254
#endif

/**
* \class Sd2Card
* \brief Raw access to SD and SDHC flash memory cards.
Expand Down

0 comments on commit 90801f8

Please sign in to comment.