Skip to content

Commit

Permalink
Merge pull request #1377 from bdring/Alarm_Idle_Behavior
Browse files Browse the repository at this point in the history
Alarms no longer force idle
  • Loading branch information
bdring authored Nov 12, 2024
2 parents 5135815 + 76cb2e4 commit 259275d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/Protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ void protocol_disable_steppers() {
Axes::set_disable(false);
return;
}
if (state_is(State::Sleep) || state_is(State::Alarm)) {
if (state_is(State::Sleep)) {
// Disable steppers immediately in sleep or alarm state
Axes::set_disable(true);
return;
Expand Down

0 comments on commit 259275d

Please sign in to comment.