You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PROBLEM:
with 2 devices on the SPI bus, the SD card library fails when calling the begin() function
the problem is that the library is not prepared to work with other SPI devices, it assumes you only have the SD card basically
SOLUTION:
in the file named SD.cpp, in function begin() (line 345) add this instruction before the return statement:
if(root.isOpen()) root.close();
that should do it.
The text was updated successfully, but these errors were encountered:
PROBLEM:
with 2 devices on the SPI bus, the SD card library fails when calling the begin() function
the problem is that the library is not prepared to work with other SPI devices, it assumes you only have the SD card basically
SOLUTION:
in the file named SD.cpp, in function begin() (line 345) add this instruction before the return statement:
if(root.isOpen()) root.close();
that should do it.
The text was updated successfully, but these errors were encountered: