Only print queue on every G command if DEBUG_POSITION is set.
This commit is contained in:
parent
4b7f8fba48
commit
8856dd9908
|
|
@ -273,7 +273,8 @@ void process_gcode_command() {
|
|||
return;
|
||||
}
|
||||
#ifdef DEBUG
|
||||
print_queue();
|
||||
if (debug_flags & DEBUG_POSITION)
|
||||
print_queue();
|
||||
#endif
|
||||
}
|
||||
else if (next_target.seen_M) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue