Skip to content

Commit cc78ee5

Browse files
thisiskeithbLCh-77
authored andcommitted
🔧 Allow board & probe dummy thermistors (MarlinFirmware#24165)
1 parent 7182549 commit cc78ee5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Marlin/src/inc/SanityCheck.h

-4
Original file line numberDiff line numberDiff line change
@@ -2378,8 +2378,6 @@ static_assert(COUNT(arm) == LOGICAL_AXES, "AXIS_RELATIVE_MODES must contain " _L
23782378
#if TEMP_SENSOR_PROBE
23792379
#if !PIN_EXISTS(TEMP_PROBE)
23802380
#error "TEMP_SENSOR_PROBE requires TEMP_PROBE_PIN."
2381-
#elif !HAS_TEMP_ADC_PROBE
2382-
#error "TEMP_PROBE_PIN must be an ADC pin."
23832381
#elif DISABLED(FIX_MOUNTED_PROBE)
23842382
#error "TEMP_SENSOR_PROBE shouldn't be set without FIX_MOUNTED_PROBE."
23852383
#endif
@@ -2388,8 +2386,6 @@ static_assert(COUNT(arm) == LOGICAL_AXES, "AXIS_RELATIVE_MODES must contain " _L
23882386
#if TEMP_SENSOR_BOARD
23892387
#if !PIN_EXISTS(TEMP_BOARD)
23902388
#error "TEMP_SENSOR_BOARD requires TEMP_BOARD_PIN."
2391-
#elif !HAS_TEMP_ADC_BOARD
2392-
#error "TEMP_BOARD_PIN must be an ADC pin."
23932389
#elif ENABLED(THERMAL_PROTECTION_BOARD) && (!defined(BOARD_MINTEMP) || !defined(BOARD_MAXTEMP))
23942390
#error "THERMAL_PROTECTION_BOARD requires BOARD_MINTEMP and BOARD_MAXTEMP."
23952391
#endif

0 commit comments

Comments
 (0)