delete obsolete and wrong code
"i" runs from 0 to 4 but "add_homeing" array size is 3 only. On the other hand the calculated value gets overwritten by either one of the if choice.
This commit is contained in:
parent
789ba02d43
commit
060b38de5c
|
@ -687,7 +687,6 @@ void process_commands()
|
||||||
st_synchronize();
|
st_synchronize();
|
||||||
for(int8_t i=0; i < NUM_AXIS; i++) {
|
for(int8_t i=0; i < NUM_AXIS; i++) {
|
||||||
if(code_seen(axis_codes[i])) {
|
if(code_seen(axis_codes[i])) {
|
||||||
current_position[i] = code_value()+add_homeing[i];
|
|
||||||
if(i == E_AXIS) {
|
if(i == E_AXIS) {
|
||||||
current_position[i] = code_value();
|
current_position[i] = code_value();
|
||||||
plan_set_e_position(current_position[E_AXIS]);
|
plan_set_e_position(current_position[E_AXIS]);
|
||||||
|
|
Loading…
Reference in a new issue