Przeglądaj źródła

Rename Feedrate to Velocity to match prior naming

Scott Lahteine 7 lat temu
rodzic
commit
51587c4b43
2 zmienionych plików z 10 dodań i 9 usunięć
  1. 2
    2
      Marlin/language_en.h
  2. 8
    7
      Marlin/ultralcd.cpp

+ 2
- 2
Marlin/language_en.h Wyświetl plik

@@ -394,8 +394,8 @@
394 394
 #ifndef MSG_VE_JERK
395 395
   #define MSG_VE_JERK                         _UxGT("Ve-jerk")
396 396
 #endif
397
-#ifndef MSG_FEEDRATE
398
-  #define MSG_FEEDRATE                        _UxGT("Feedrate")
397
+#ifndef MSG_VELOCITY
398
+  #define MSG_VELOCITY                        _UxGT("Velocity")
399 399
 #endif
400 400
 #ifndef MSG_VMAX
401 401
   #define MSG_VMAX                            _UxGT("Vmax ")

+ 8
- 7
Marlin/ultralcd.cpp Wyświetl plik

@@ -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

Ładowanie…
Anuluj
Zapisz