We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a223267 + 1a85bc6 commit b8d92f9Copy full SHA for b8d92f9
shared-bindings/sdcardio/SDCard.c
@@ -43,6 +43,13 @@
43
//| Failure to do so can prevent the SD card from being recognized until it is
44
//| powered off or re-inserted.
45
//|
46
+//| Exception: on boards where another SPI peripheral has a floating CS
47
+//| pin with no hardware pull-up (such as the Feather RP2040 RFM), that
48
+//| peripheral's CS must be driven HIGH before SD card initialization.
49
+//| Failure to do so will corrupt the SPI bus during SD card init. In
50
+//| these cases, initialize and drive the other peripheral's CS high
51
+//| first, then initialize the SD card.
52
+//|
53
//| Example usage:
54
55
//| .. code-block:: python
0 commit comments