Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[Fw] Init HSPI in sd_card.cpp, avoid use default pins. #68

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

t1ngyu
Copy link

@t1ngyu t1ngyu commented Dec 11, 2021

Init HSPI first, the spi.begin() in SDFS::begin() will do nothing, so no need to modify the system's esp32 library.

@@ -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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants