Added possibility to print move time to serial, to help debugging

This commit is contained in:
Emanuele Caruso 2011-05-19 02:33:48 +02:00
parent ae56481873
commit 8060d4da56
2 changed files with 7 additions and 2 deletions

View file

@ -934,8 +934,13 @@ inline void prepare_move()
Serial.println("");
}
#endif
#ifdef PRINT_MOVE_TIME
unsigned long startmove = micros();
#endif
linear_move(x_steps_to_take, y_steps_to_take, z_steps_to_take, e_steps_to_take); // make the move
#ifdef PRINT_MOVE_TIME
Serial.println(micros()-startmove);
#endif
}
void linear_move(unsigned long x_steps_remaining, unsigned long y_steps_remaining, unsigned long z_steps_remaining, unsigned long e_steps_remaining) // make linear move with preset speeds and destinations, see G0 and G1

View file

@ -151,6 +151,6 @@ const int Z_MAX_LENGTH = 100;
#define BAUDRATE 115200
//#define PRINT_MOVE_TIME
#endif