mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 05:48:43 +00:00
Fix G-code parser with MMU2 (#13951)
This commit is contained in:
parent
746c38f4be
commit
f22c9a1ae1
@ -142,27 +142,23 @@ void GCodeParser::parse(char *p) {
|
|||||||
// Skip spaces to get the numeric part
|
// Skip spaces to get the numeric part
|
||||||
while (*p == ' ') p++;
|
while (*p == ' ') p++;
|
||||||
|
|
||||||
// Bail if there's no command code number
|
|
||||||
// Prusa MMU2 has T?/Tx/Tc commands
|
|
||||||
#if DISABLED(PRUSA_MMU2)
|
|
||||||
if (!NUMERIC(*p)) return;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Save the command letter at this point
|
|
||||||
// A '?' signifies an unknown command
|
|
||||||
command_letter = letter;
|
|
||||||
|
|
||||||
|
|
||||||
#if ENABLED(PRUSA_MMU2)
|
#if ENABLED(PRUSA_MMU2)
|
||||||
if (letter == 'T') {
|
if (letter == 'T') {
|
||||||
// check for special MMU2 T?/Tx/Tc commands
|
// check for special MMU2 T?/Tx/Tc commands
|
||||||
if (*p == '?' || *p == 'x' || *p == 'c') {
|
if (*p == '?' || *p == 'x' || *p == 'c') {
|
||||||
|
command_letter = letter;
|
||||||
string_arg = p;
|
string_arg = p;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Bail if there's no command code number
|
||||||
|
if (!NUMERIC(*p)) return;
|
||||||
|
|
||||||
|
// Save the command letter at this point
|
||||||
|
// A '?' signifies an unknown command
|
||||||
|
command_letter = letter;
|
||||||
|
|
||||||
// Get the code number - integer digits only
|
// Get the code number - integer digits only
|
||||||
codenum = 0;
|
codenum = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user