Skip to content

Commit

Permalink
Fix TEMP_0_TR_ENABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Dec 14, 2020
1 parent eb254ef commit f74015b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/module/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1702,10 +1702,10 @@ void Temperature::init() {
#endif

// Thermistor activation by MCU pin
#if PIN_EXISTS(TEMP_0_TR_ENABLE_PIN)
#if PIN_EXISTS(TEMP_0_TR_ENABLE)
OUT_WRITE(TEMP_0_TR_ENABLE_PIN, ENABLED(HEATER_0_USES_MAX6675));
#endif
#if PIN_EXISTS(TEMP_1_TR_ENABLE_PIN)
#if PIN_EXISTS(TEMP_1_TR_ENABLE)
OUT_WRITE(TEMP_1_TR_ENABLE_PIN, ENABLED(HEATER_1_USES_MAX6675));
#endif

Expand Down

0 comments on commit f74015b

Please sign in to comment.