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:
Markus Hitter 2010-09-30 23:34:22 +02:00
parent 9e02c9c1e4
commit 69ab8cbd9d
1 changed files with 1 additions and 1 deletions

View File

@ -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;