mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-29 13:19:53 +00:00
Fix TEMP_0_TR_ENABLE
This commit is contained in:
parent
eb254ef70b
commit
f74015b4e5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue