Skip to content

Commit

Permalink
Removed Door and Hold
Browse files Browse the repository at this point in the history
Door and Hold are already handled sufficiently.
  • Loading branch information
bdring committed Dec 14, 2024
1 parent 7b56b8f commit 2414813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/Control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ std::string Control::report_status() {
}

bool Control::pins_block_unlock() {
std::string blockers("DHFE"); // Door, Hold, Fault, E-Stop block unlock and homing
std::string blockers("FE"); // Fault, E-Stop block unlock and homing
for (auto pin : _pins) {
if (pin->get() && blockers.find(pin->letter()) != std::string::npos) {
return true;
Expand Down

0 comments on commit 2414813

Please sign in to comment.