-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement G60 / G61 to meet spec #27281
Implement G60 / G61 to meet spec #27281
Conversation
This Fixes the case where no Integers were specified on the G61 command: ``` G60 G0 X100 Y100 Z20 G61 X Y ``` does not return to the last location as : ``` G60 G0 X100 Y100 Z20 G61 X0 Y0 ``` does. this matches what the spec says: https://marlinfw.org/docs/gcode/G061.html which does not even document you can put an integer after the axis letters.
It may be that the implementation of |
At first glance, it appears our |
f117499
to
570ec1f
Compare
I went ahead and modified |
9568ce5
to
85a84cc
Compare
85a84cc
to
4bc093f
Compare
This Fixes the case where no Integers were specified on the G61 command:
does not return to the last location as :
does. this matches what the spec says:
https://marlinfw.org/docs/gcode/G061.html
which does not even document you can put an integer after the axis letters.
Description
Fix for #26222
Requirements
No
Benefits
G61 will work according to the spec.
Configurations
Related Issues
(#26222)