Skip to content
Snippets Groups Projects
Commit 2b286a10 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Quickie G35 patch

parent 8982756b
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ void GcodeSuite::G35() {
const uint8_t screw_thread = parser.byteval('S', TRAMMING_SCREW_THREAD);
if (!WITHIN(screw_thread, 30, 51) || screw_thread % 10 > 1) {
SERIAL_ECHOLNPGM("?(S)crew thread must be 30, 31, 40, 41, 50, or 51.");
goto EXIT_G35;
return;
}
// Wait for planner moves to finish!
......@@ -184,8 +184,6 @@ void GcodeSuite::G35() {
// Home Z after the alignment procedure
process_subcommands_now_P(PSTR("G28Z"));
EXIT_G35:
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< G35");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment