gcode.c: as we have a working maximum feedrate limitation now,
we can move even faster on rapid movements with more than one axis.
This commit is contained in:
parent
9e02c9c1e4
commit
69ab8cbd9d
2
gcode.c
2
gcode.c
|
|
@ -393,7 +393,7 @@ void process_gcode_command(GCODE_COMMAND *gcmd) {
|
|||
// since it would be a major hassle to force the dda to not synchronise, just provide a fast feedrate and hope it's close enough to what host expects
|
||||
case 0:
|
||||
backup_f = gcmd->target.F;
|
||||
gcmd->target.F = MAXIMUM_FEEDRATE_X;
|
||||
gcmd->target.F = MAXIMUM_FEEDRATE_X * 2;
|
||||
enqueue(&gcmd->target);
|
||||
gcmd->target.F = backup_f;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue