We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dbce71 commit 3ddf728Copy full SHA for 3ddf728
2 files changed
Marlin/src/HAL/RP2040/HAL.cpp
@@ -59,7 +59,7 @@ void MarlinHAL::init() {
59
constexpr int cpuFreq = F_CPU;
60
UNUSED(cpuFreq);
61
62
- #if HAS_MEDIA && DISABLED(SDIO_SUPPORT) && PIN_EXISTS(SD_SS)
+ #if HAS_MEDIA && DISABLED(ONBOARD_SDIO) && PIN_EXISTS(SD_SS)
63
OUT_WRITE(SD_SS_PIN, HIGH); // Try to set SD_SS_PIN inactive before any other SPI users start up
64
#endif
65
Marlin/src/pins/stm32f4/pins_XTLW_CLIMBER_8TH.h
@@ -168,7 +168,7 @@
168
// Must use soft SPI because Marlin's default hardware SPI is tied to LCD's EXP2
169
//
170
#if SD_CONNECTION_IS(ONBOARD)
171
- #define SDIO_SUPPORT // Use SDIO for onboard SD
+ #define ONBOARD_SDIO // Use SDIO for onboard SD
172
#define SDIO_D0_PIN PC8
173
#define SDIO_D1_PIN PC9
174
#define SDIO_D2_PIN PC10
0 commit comments