Fix set_home_offset bug from bad porting

This commit is contained in:
Scott Lahteine 2018-01-22 06:10:35 -06:00
parent a19656e7cb
commit 51c7b5d46f

View file

@ -1376,15 +1376,10 @@ void homeaxis(const AxisEnum axis) {
#if HAS_M206_COMMAND
/**
* Change the home offset for an axis, update the current
* position and the software endstops to retain the same
* relative distance to the new home.
*
* Since this changes the current_position, code should
* call sync_plan_position soon after this.
* Change the home offset for an axis.
* Also refreshes the workspace offset.
*/
void set_home_offset(const AxisEnum axis, const float v) {
current_position[axis] += v - home_offset[axis];
home_offset[axis] = v;
update_software_endstops(axis);
}