🐛 Fix G5 IJ with Motion Mode (#21858)

This commit is contained in:
Elton Law 2021-05-12 03:21:55 -04:00 committed by Scott Lahteine
parent ed224ca7d8
commit 72c28d3462

View File

@ -216,10 +216,9 @@ void GCodeParser::parse(char *p) {
break;
#if ENABLED(GCODE_MOTION_MODES)
#if ENABLED(ARC_SUPPORT)
case 'I' ... 'J':
if (motion_mode_codenum != 2 && motion_mode_codenum != 3) return;
#endif
case 'I' ... 'J':
if (motion_mode_codenum != 5 && \
TERN1(ARC_SUPPORT, motion_mode_codenum != 2 && motion_mode_codenum != 3)) return;
case 'Q':
if (motion_mode_codenum != 5) return;
case 'X' ... 'Z': case 'E' ... 'F':