🔧 Fix TEMP_SENSOR_BED_USES_SW_SPI (#27938)

Followup to #26441
This commit is contained in:
ellensp
2025-06-23 05:40:29 +12:00
committed by GitHub
parent de219dcd63
commit 685ccf3fdf
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1591,3 +1591,8 @@
#undef AUTO_REPORT_SD_STATUS
#define AUTO_REPORT_SD_STATUS
#endif
// SPI Flash Backup
#if ALL(SPI_FLASH, HAS_MEDIA, MARLIN_DEV_MODE)
#define SPI_FLASH_BACKUP 1
#endif
+1 -1
View File
@@ -166,7 +166,7 @@
#if TEMP_SENSOR_IS_ANY_MAX_TC(2) && TEMP_SENSOR_2_HAS_SPI_PINS && DISABLED(TEMP_SENSOR_FORCE_HW_SPI)
#define TEMP_SENSOR_2_USES_SW_SPI 1
#endif
#if TEMP_SENSOR_IS_ANY_MAX_TC(BED) && TEMP_SENSOR_0_HAS_SPI_PINS && DISABLED(TEMP_SENSOR_FORCE_HW_SPI)
#if TEMP_SENSOR_IS_ANY_MAX_TC(BED) && TEMP_SENSOR_BED_HAS_SPI_PINS && DISABLED(TEMP_SENSOR_FORCE_HW_SPI)
#define TEMP_SENSOR_BED_USES_SW_SPI 1
#endif