current_position not static

This commit is contained in:
Scott Lahteine
2015-04-08 01:05:39 -07:00
parent 27cb90da8b
commit 3162971cd6
2 changed files with 7 additions and 9 deletions

View File

@ -205,7 +205,7 @@
bool Running = true;
static float feedrate = 1500.0, next_feedrate, saved_feedrate;
static float current_position[NUM_AXIS] = { 0.0 };
float current_position[NUM_AXIS] = { 0.0 };
static float destination[NUM_AXIS] = { 0.0 };
bool axis_known_position[3] = { false };