Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GalilSup/src/GalilAxis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2180,7 +2180,7 @@ void GalilAxis::checkHoming(void)

// ISIS: need to confirm limits high/low limit behaviour
bool home_timeout = homing_ && (stoppedTime_ >= homing_timeout) && !cancelHomeSent_;
bool home_soft_limits_hit = (((readback > highLimit_ && softlimits) || (readback < lowLimit_ && softlimits)) && homing_ && !cancelHomeSent_ && done_);
bool home_soft_limits_hit = (((readback > highLimit_ && softlimits) || (readback < lowLimit_ && softlimits)) && home_timeout && done_);
if (home_timeout || home_soft_limits_hit)
{
sprintf(pC_->cmd_, "MG homed%c\n", axisName_);
Expand Down