|
|
@ -523,7 +523,7 @@ void menu_advanced_steps_per_mm() { |
|
|
|
START_MENU(); |
|
|
|
BACK_ITEM(MSG_ADVANCED_SETTINGS); |
|
|
|
|
|
|
|
#define EDIT_QSTEPS(Q) EDIT_ITEM_FAST(float51, MSG_##Q##_STEPS, &planner.settings.axis_steps_per_mm[_AXIS(Q)], 5, 9999, []{ planner.refresh_positioning(); }) |
|
|
|
#define EDIT_QSTEPS(Q) EDIT_ITEM_FAST(float61, MSG_##Q##_STEPS, &planner.settings.axis_steps_per_mm[_AXIS(Q)], 5, 9999, []{ planner.refresh_positioning(); }) |
|
|
|
LINEAR_AXIS_CODE( |
|
|
|
EDIT_QSTEPS(A), EDIT_QSTEPS(B), EDIT_QSTEPS(C), |
|
|
|
EDIT_QSTEPS(I), EDIT_QSTEPS(J), EDIT_QSTEPS(K) |
|
|
@ -531,7 +531,7 @@ void menu_advanced_steps_per_mm() { |
|
|
|
|
|
|
|
#if ENABLED(DISTINCT_E_FACTORS) |
|
|
|
LOOP_L_N(n, E_STEPPERS) |
|
|
|
EDIT_ITEM_FAST_N(float51, n, MSG_EN_STEPS, &planner.settings.axis_steps_per_mm[E_AXIS_N(n)], 5, 9999, []{ |
|
|
|
EDIT_ITEM_FAST_N(float61, n, MSG_EN_STEPS, &planner.settings.axis_steps_per_mm[E_AXIS_N(n)], 5, 9999, []{ |
|
|
|
const uint8_t e = MenuItemBase::itemIndex; |
|
|
|
if (e == active_extruder) |
|
|
|
planner.refresh_positioning(); |
|
|
@ -539,7 +539,7 @@ void menu_advanced_steps_per_mm() { |
|
|
|
planner.mm_per_step[E_AXIS_N(e)] = 1.0f / planner.settings.axis_steps_per_mm[E_AXIS_N(e)]; |
|
|
|
}); |
|
|
|
#elif E_STEPPERS |
|
|
|
EDIT_ITEM_FAST(float51, MSG_E_STEPS, &planner.settings.axis_steps_per_mm[E_AXIS], 5, 9999, []{ planner.refresh_positioning(); }); |
|
|
|
EDIT_ITEM_FAST(float61, MSG_E_STEPS, &planner.settings.axis_steps_per_mm[E_AXIS], 5, 9999, []{ planner.refresh_positioning(); }); |
|
|
|
#endif |
|
|
|
|
|
|
|
END_MENU(); |
|
|
|