🩹 RP2040 has PIN_SPI_SS

Followup to #27650
This commit is contained in:
Scott Lahteine 2025-01-25 20:17:10 -06:00
parent 84113367fc
commit ab7137ab8e

View file

@ -24,8 +24,6 @@
/**
* Define SPI Pins: SCK, MISO, MOSI, SS
*/
#define PIN_SPI_SS 2
#ifndef SD_SCK_PIN
#define SD_SCK_PIN PIN_SPI_SCK
#endif
@ -35,3 +33,6 @@
#ifndef SD_MOSI_PIN
#define SD_MOSI_PIN PIN_SPI_MOSI
#endif
#ifndef SD_SS_PIN
#define SD_SS_PIN PIN_SPI_SS
#endif