Fixed wrong feedrate bug.
This commit is contained in:
parent
0e0087ef75
commit
cc6260bd71
1 changed files with 1 additions and 1 deletions
|
|
@ -366,7 +366,7 @@ inline void process_commands()
|
|||
|
||||
time_for_move = max(X_TIME_FOR_MOVE,Y_TIME_FOR_MOVE);
|
||||
time_for_move = max(time_for_move,Z_TIME_FOR_MOVE);
|
||||
time_for_move = max(time_for_move,E_TIME_FOR_MOVE);
|
||||
if(time_for_move <= 0) time_for_move = max(time_for_move,E_TIME_FOR_MOVE);
|
||||
|
||||
if(x_steps_to_take) x_interval = time_for_move/x_steps_to_take;
|
||||
if(y_steps_to_take) y_interval = time_for_move/y_steps_to_take;
|
||||
|
|
|
|||
Loading…
Reference in a new issue