Fixed merge bug, I forgot to declare the new variable home_all_axis

This commit is contained in:
Emanuele Caruso 2011-06-22 02:21:34 +02:00
parent 5339e735a1
commit 4642d041d5

View file

@ -83,6 +83,7 @@ unsigned long interval;
float destination[NUM_AXIS] = {0.0, 0.0, 0.0, 0.0}; float destination[NUM_AXIS] = {0.0, 0.0, 0.0, 0.0};
float current_position[NUM_AXIS] = {0.0, 0.0, 0.0, 0.0}; float current_position[NUM_AXIS] = {0.0, 0.0, 0.0, 0.0};
long axis_interval[NUM_AXIS]; // for speed delay long axis_interval[NUM_AXIS]; // for speed delay
bool home_all_axis = true;
float feedrate = 1500, next_feedrate, saved_feedrate; float feedrate = 1500, next_feedrate, saved_feedrate;
float time_for_move; float time_for_move;
long gcode_N, gcode_LastN; long gcode_N, gcode_LastN;