Skip to content
Open
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
1 change: 1 addition & 0 deletions 2.Firmware/HoloCubic-fw/src/sd_card.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ void SdCard::init()
{

SPIClass* sd_spi = new SPIClass(HSPI); // another SPI
sd_spi->begin(14, 26, 13, 15); // Replace default HSPI pins

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefert add macro like #define SD_SCL XX on top of file.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's more, remove the related description about modifing library in README.md.

if (!SD.begin(15, *sd_spi)) // SD-Card SS pin is 15
{
Serial.println("Card Mount Failed");
Expand Down