|
@@ -88,7 +88,7 @@ bool relative_mode; // = false;
|
88
|
88
|
* Used by 'buffer_line_to_current_position' to do a move after changing it.
|
89
|
89
|
* Used by 'sync_plan_position' to update 'planner.position'.
|
90
|
90
|
*/
|
91
|
|
-float current_position[XYZE] = { 0 };
|
|
91
|
+float current_position[XYZE] = { X_HOME_POS, Y_HOME_POS, Z_HOME_POS };
|
92
|
92
|
|
93
|
93
|
/**
|
94
|
94
|
* Cartesian Destination
|
|
@@ -96,7 +96,7 @@ float current_position[XYZE] = { 0 };
|
96
|
96
|
* and expected by functions like 'prepare_move_to_destination'.
|
97
|
97
|
* Set with 'get_destination_from_command' or 'set_destination_from_current'.
|
98
|
98
|
*/
|
99
|
|
-float destination[XYZE] = { 0 };
|
|
99
|
+float destination[XYZE]; // = { 0 }
|
100
|
100
|
|
101
|
101
|
// The active extruder (tool). Set with T<extruder> command.
|
102
|
102
|
#if EXTRUDERS > 1
|