Skip to content

Commit

Permalink
🔧 Update thermocouple 2 pin sanity check (MarlinFirmware#25627)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored and thinkyhead committed Apr 10, 2023
1 parent d05acb7 commit 2399a24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -2526,8 +2526,8 @@ static_assert(X_MAX_LENGTH >= X_BED_SIZE, "Movement bounds (X_MIN_POS, X_MAX_POS
#error "TEMP_SENSOR_2 is required with 3 or more HOTENDS."
#elif !HAS_HEATER_2
#error "HEATER_2_PIN not defined for this board."
#elif !PIN_EXISTS(TEMP_2) && !TEMP_SENSOR_2_IS_DUMMY
#error "TEMP_2_PIN not defined for this board."
#elif !ANY_PIN(TEMP_2, TEMP_2_CS) && !TEMP_SENSOR_2_IS_DUMMY
#error "TEMP_2_PIN or TEMP_2_CS_PIN not defined for this board."
#endif
#if HOTENDS > 3
#if TEMP_SENSOR_3 == 0
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/pins/sam/pins_ULTRATRONICS_PRO.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
#define TEMP_0_CS_PIN 65
#define TEMP_1_CS_PIN 52
#define TEMP_2_CS_PIN 50
#define TEMP_3_CS_PIN 51
#define TEMP_3_CS_PIN 51 // Not yet supported

#define ENC424_SS 61

Expand Down

0 comments on commit 2399a24

Please sign in to comment.