0
0
Fork 0
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:
Scott Lahteine 2020-12-14 00:32:32 -06:00
parent eb254ef70b
commit f74015b4e5

View file

@ -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