Page 2 of 2

Re: Error 907 Z Axis travel exceeded

Posted: Sat Jan 30, 2021 6:17 am
by Gixer
Yes it was the bottom part of the G28 command missing all working ok now .

if (words.length > 0) {
switch (method) {
case "G28":
gMotionModal.reset();
gAbsIncModal.reset();
writeBlock(gFormat.format(28), gAbsIncModal.format(91), words);
writeBlock(gAbsIncModal.format(90));
break;
case "G53":
gMotionModal.reset();
writeBlock(gAbsIncModal.format(90), gFormat.format(53), gMotionModal.format(0), words);
break;
default:
error(localize("Unsupported safe position method."));
return;
}

Cheers for help.
Gix.