Skip to content
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions shared-bindings/sdcardio/SDCard.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
//| Failure to do so can prevent the SD card from being recognized until it is
//| powered off or re-inserted.
//|
//| Exception: on boards where another SPI peripheral has a floating CS
//| pin with no hardware pull-up (such as the Feather RP2040 RFM), that
//| peripheral's CS must be driven HIGH before SD card initialization.
//| Failure to do so will corrupt the SPI bus during SD card init. In
//| these cases, initialize and drive the other peripheral's CS high
//| first, then initialize the SD card.
Comment thread
dhalbert marked this conversation as resolved.
Outdated
//| Example usage:
//|
//| .. code-block:: python
Expand Down
Loading