use proper feedrate for Y

This commit is contained in:
Michael Moon 2011-02-15 13:17:13 +11:00
parent 940d474c6c
commit 664337fa25
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ void zero_x(void) {
void zero_y(void) { void zero_y(void) {
TARGET t = startpoint; TARGET t = startpoint;
t.Y = 0; t.Y = 0;
t.F = SEARCH_FEEDRATE_X; t.F = SEARCH_FEEDRATE_Y;
enqueue(&t); enqueue(&t);
} }