Skip to content

Commit

Permalink
Alarms no longer force idle
Browse files Browse the repository at this point in the history
  • Loading branch information
bdring committed Nov 7, 2024
1 parent 20e6a77 commit 76cb2e4
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 76cb2e4

Please sign in to comment.