|
@@ -2870,8 +2870,8 @@ void kill_screen(const char* lcd_msg) {
|
2870
|
2870
|
static void lcd_refresh_zprobe_zoffset() { refresh_zprobe_zoffset(); }
|
2871
|
2871
|
#endif
|
2872
|
2872
|
|
2873
|
|
- // M203 / M205 Feedrates
|
2874
|
|
- void lcd_control_motion_feedrate_menu() {
|
|
2873
|
+ // M203 / M205 Velocity options
|
|
2874
|
+ void lcd_control_motion_velocity_menu() {
|
2875
|
2875
|
START_MENU();
|
2876
|
2876
|
MENU_BACK(MSG_MOTION);
|
2877
|
2877
|
|
|
@@ -3001,18 +3001,19 @@ void kill_screen(const char* lcd_msg) {
|
3001
|
3001
|
MENU_ITEM_EDIT_CALLBACK(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX, lcd_refresh_zprobe_zoffset);
|
3002
|
3002
|
#endif
|
3003
|
3003
|
|
3004
|
|
- // M203 / M205 Feedrate items
|
3005
|
|
- MENU_ITEM(submenu, MSG_FEEDRATE, lcd_control_motion_feedrate_menu);
|
|
3004
|
+ // M203 / M205 - Feedrate items
|
|
3005
|
+ MENU_ITEM(submenu, MSG_VELOCITY, lcd_control_motion_velocity_menu);
|
3006
|
3006
|
|
3007
|
|
- // M201 Acceleration items
|
|
3007
|
+ // M201 - Acceleration items
|
3008
|
3008
|
MENU_ITEM(submenu, MSG_ACCELERATION, lcd_control_motion_acceleration_menu);
|
3009
|
3009
|
|
3010
|
|
- // M205 Max Jerk
|
|
3010
|
+ // M205 - Max Jerk
|
3011
|
3011
|
MENU_ITEM(submenu, MSG_JERK, lcd_control_motion_jerk_menu);
|
3012
|
3012
|
|
3013
|
|
- // M92 Steps Per mm
|
|
3013
|
+ // M92 - Steps Per mm
|
3014
|
3014
|
MENU_ITEM(submenu, MSG_STEPS_PER_MM, lcd_control_motion_steps_per_mm_menu);
|
3015
|
3015
|
|
|
3016
|
+ // M540 S - Abort on endstop hit when SD printing
|
3016
|
3017
|
#if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
|
3017
|
3018
|
MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &stepper.abort_on_endstop_hit);
|
3018
|
3019
|
#endif
|