Configurable FREEZE pin state (#23948)

This commit is contained in:
Giuliano Zaro
2022-03-27 00:22:41 +01:00
committed by GitHub
parent 20b5615305
commit 692f42ee7d

View File

@@ -476,7 +476,7 @@ inline void manage_inactivity(const bool no_stepper_sleep=false) {
#endif #endif
#if HAS_FREEZE_PIN #if HAS_FREEZE_PIN
Stepper::frozen = READ(FREEZE_PIN) ^ DISABLED(INVERT_FREEZE_PIN); stepper.frozen = READ(FREEZE_PIN) == FREEZE_STATE;
#endif #endif
#if HAS_HOME #if HAS_HOME