Explorar el Código

Update Configuration.h files to better names (#6814)

Changed UBL_G26_MESH_EDITING to UBL_G26_MESH_VALIDATION
Added UBL_MESH_EDIT_MOVES_Z to prepare for that change (coming next)
Roxy-3D hace 7 años
padre
commit
364f8fb613
Se han modificado 30 ficheros con 70 adiciones y 41 borrados
  1. 2
    1
      Marlin/Configuration.h
  2. 2
    2
      Marlin/G26_Mesh_Validation_Tool.cpp
  3. 6
    6
      Marlin/Marlin_main.cpp
  4. 3
    1
      Marlin/SanityCheck.h
  5. 2
    1
      Marlin/example_configurations/Cartesio/Configuration.h
  6. 2
    1
      Marlin/example_configurations/Felix/Configuration.h
  7. 2
    1
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  8. 2
    1
      Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h
  9. 2
    1
      Marlin/example_configurations/Hephestos/Configuration.h
  10. 2
    1
      Marlin/example_configurations/Hephestos_2/Configuration.h
  11. 2
    1
      Marlin/example_configurations/K8200/Configuration.h
  12. 2
    1
      Marlin/example_configurations/K8400/Configuration.h
  13. 2
    1
      Marlin/example_configurations/K8400/Dual-head/Configuration.h
  14. 2
    1
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  15. 2
    1
      Marlin/example_configurations/RigidBot/Configuration.h
  16. 3
    2
      Marlin/example_configurations/SCARA/Configuration.h
  17. 3
    2
      Marlin/example_configurations/TAZ4/Configuration.h
  18. 3
    2
      Marlin/example_configurations/TinyBoy2/Configuration.h
  19. 3
    2
      Marlin/example_configurations/WITBOX/Configuration.h
  20. 2
    1
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  21. 2
    1
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h
  22. 2
    1
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h
  23. 2
    1
      Marlin/example_configurations/delta/generic/Configuration.h
  24. 2
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  25. 2
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  26. 2
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  27. 2
    1
      Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h
  28. 2
    1
      Marlin/example_configurations/makibox/Configuration.h
  29. 3
    2
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  30. 2
    1
      Marlin/example_configurations/wt150/Configuration.h

+ 2
- 1
Marlin/Configuration.h Ver fichero

@@ -886,7 +886,8 @@
886 886
   #define UBL_PROBE_PT_2_Y 20
887 887
   #define UBL_PROBE_PT_3_X 180
888 888
   #define UBL_PROBE_PT_3_Y 20
889
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
889
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
890
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
890 891
 
891 892
 #elif ENABLED(MESH_BED_LEVELING)
892 893
 

+ 2
- 2
Marlin/G26_Mesh_Validation_Tool.cpp Ver fichero

@@ -26,7 +26,7 @@
26 26
 
27 27
 #include "MarlinConfig.h"
28 28
 
29
-#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
29
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
30 30
 
31 31
   #include "ubl.h"
32 32
   #include "Marlin.h"
@@ -873,4 +873,4 @@
873 873
     return UBL_OK;
874 874
   }
875 875
 
876
-#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
876
+#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION

+ 6
- 6
Marlin/Marlin_main.cpp Ver fichero

@@ -57,7 +57,7 @@
57 57
  * G12 - Clean tool
58 58
  * G20 - Set input units to inches
59 59
  * G21 - Set input units to millimeters
60
- * G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_EDITING)
60
+ * G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_VALIDATION)
61 61
  * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
62 62
  * G28 - Home one or more axes
63 63
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
@@ -6613,7 +6613,7 @@ inline void gcode_M42() {
6613 6613
 
6614 6614
 #endif // Z_MIN_PROBE_REPEATABILITY_TEST
6615 6615
 
6616
-#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
6616
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
6617 6617
 
6618 6618
   inline void gcode_M49() {
6619 6619
     ubl.g26_debug_flag ^= true;
@@ -6621,7 +6621,7 @@ inline void gcode_M42() {
6621 6621
     serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
6622 6622
   }
6623 6623
 
6624
-#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
6624
+#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
6625 6625
 
6626 6626
 /**
6627 6627
  * M75: Start print timer
@@ -10096,7 +10096,7 @@ void process_next_command() {
10096 10096
           break;
10097 10097
       #endif // INCH_MODE_SUPPORT
10098 10098
 
10099
-      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
10099
+      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
10100 10100
         case 26: // G26: Mesh Validation Pattern generation
10101 10101
           gcode_G26();
10102 10102
           break;
@@ -10248,11 +10248,11 @@ void process_next_command() {
10248 10248
           break;
10249 10249
       #endif // Z_MIN_PROBE_REPEATABILITY_TEST
10250 10250
 
10251
-      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
10251
+      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_VALIDATION)
10252 10252
         case 49: // M49: Turn on or off G26 debug flag for verbose output
10253 10253
           gcode_M49();
10254 10254
           break;
10255
-      #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
10255
+      #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_VALIDATION
10256 10256
 
10257 10257
       case 75: // M75: Start print timer
10258 10258
         gcode_M75(); break;

+ 3
- 1
Marlin/SanityCheck.h Ver fichero

@@ -157,7 +157,9 @@
157 157
 #elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
158 158
   #error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
159 159
 #elif defined(UBL_MESH_EDIT_ENABLED)
160
-  #error "UBL_MESH_EDIT_ENABLED is now UBL_G26_MESH_EDITING. Please update your configuration."
160
+  #error "UBL_MESH_EDIT_ENABLED is now UBL_G26_MESH_VALIDATION. Please update your configuration."
161
+#elif defined(UBL_MESH_EDITING)
162
+  #error "UBL_MESH_EDITING is now UBL_G26_MESH_VALIDATION. Please update your configuration."
161 163
 #elif defined(BEEPER)
162 164
   #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
163 165
 #elif defined(SDCARDDETECT)

+ 2
- 1
Marlin/example_configurations/Cartesio/Configuration.h Ver fichero

@@ -884,7 +884,8 @@
884 884
   #define UBL_PROBE_PT_2_Y 20
885 885
   #define UBL_PROBE_PT_3_X 180
886 886
   #define UBL_PROBE_PT_3_Y 20
887
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
887
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
888
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
888 889
 
889 890
 #elif ENABLED(MESH_BED_LEVELING)
890 891
 

+ 2
- 1
Marlin/example_configurations/Felix/Configuration.h Ver fichero

@@ -868,7 +868,8 @@
868 868
   #define UBL_PROBE_PT_2_Y 20
869 869
   #define UBL_PROBE_PT_3_X 180
870 870
   #define UBL_PROBE_PT_3_Y 20
871
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
871
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
872
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
872 873
 
873 874
 #elif ENABLED(MESH_BED_LEVELING)
874 875
 

+ 2
- 1
Marlin/example_configurations/Felix/DUAL/Configuration.h Ver fichero

@@ -868,7 +868,8 @@
868 868
   #define UBL_PROBE_PT_2_Y 20
869 869
   #define UBL_PROBE_PT_3_X 180
870 870
   #define UBL_PROBE_PT_3_Y 20
871
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
871
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
872
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
872 873
 
873 874
 #elif ENABLED(MESH_BED_LEVELING)
874 875
 

+ 2
- 1
Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h Ver fichero

@@ -890,7 +890,8 @@
890 890
   #define UBL_PROBE_PT_2_Y 25
891 891
   #define UBL_PROBE_PT_3_X 180
892 892
   #define UBL_PROBE_PT_3_Y 25
893
-  #define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
893
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
894
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
894 895
 
895 896
 #elif ENABLED(MESH_BED_LEVELING)
896 897
 

+ 2
- 1
Marlin/example_configurations/Hephestos/Configuration.h Ver fichero

@@ -876,7 +876,8 @@
876 876
   #define UBL_PROBE_PT_2_Y 20
877 877
   #define UBL_PROBE_PT_3_X 180
878 878
   #define UBL_PROBE_PT_3_Y 20
879
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
879
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
880
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
880 881
 
881 882
 #elif ENABLED(MESH_BED_LEVELING)
882 883
 

+ 2
- 1
Marlin/example_configurations/Hephestos_2/Configuration.h Ver fichero

@@ -879,7 +879,8 @@
879 879
   #define UBL_PROBE_PT_2_Y 20
880 880
   #define UBL_PROBE_PT_3_X 180
881 881
   #define UBL_PROBE_PT_3_Y 20
882
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
882
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
883
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
883 884
 
884 885
 #elif ENABLED(MESH_BED_LEVELING)
885 886
 

+ 2
- 1
Marlin/example_configurations/K8200/Configuration.h Ver fichero

@@ -914,7 +914,8 @@
914 914
   #define UBL_PROBE_PT_2_Y 20
915 915
   #define UBL_PROBE_PT_3_X 180
916 916
   #define UBL_PROBE_PT_3_Y 20
917
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
917
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
918
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
918 919
 
919 920
 #elif ENABLED(MESH_BED_LEVELING)
920 921
 

+ 2
- 1
Marlin/example_configurations/K8400/Configuration.h Ver fichero

@@ -885,7 +885,8 @@
885 885
   #define UBL_PROBE_PT_2_Y 20
886 886
   #define UBL_PROBE_PT_3_X 180
887 887
   #define UBL_PROBE_PT_3_Y 20
888
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
888
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
889
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
889 890
 
890 891
 #elif ENABLED(MESH_BED_LEVELING)
891 892
 

+ 2
- 1
Marlin/example_configurations/K8400/Dual-head/Configuration.h Ver fichero

@@ -885,7 +885,8 @@
885 885
   #define UBL_PROBE_PT_2_Y 20
886 886
   #define UBL_PROBE_PT_3_X 180
887 887
   #define UBL_PROBE_PT_3_Y 20
888
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
888
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
889
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
889 890
 
890 891
 #elif ENABLED(MESH_BED_LEVELING)
891 892
 

+ 2
- 1
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Ver fichero

@@ -885,7 +885,8 @@
885 885
   #define UBL_PROBE_PT_2_Y 20
886 886
   #define UBL_PROBE_PT_3_X 180
887 887
   #define UBL_PROBE_PT_3_Y 20
888
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
888
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
889
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
889 890
 
890 891
 #elif ENABLED(MESH_BED_LEVELING)
891 892
 

+ 2
- 1
Marlin/example_configurations/RigidBot/Configuration.h Ver fichero

@@ -884,7 +884,8 @@
884 884
   #define UBL_PROBE_PT_2_Y 20
885 885
   #define UBL_PROBE_PT_3_X 180
886 886
   #define UBL_PROBE_PT_3_Y 20
887
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
887
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
888
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
888 889
 
889 890
 #elif ENABLED(MESH_BED_LEVELING)
890 891
 

+ 3
- 2
Marlin/example_configurations/SCARA/Configuration.h Ver fichero

@@ -901,8 +901,9 @@
901 901
   #define UBL_PROBE_PT_2_Y 20
902 902
   #define UBL_PROBE_PT_3_X 180
903 903
   #define UBL_PROBE_PT_3_Y 20
904
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
905
-
904
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
905
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
906
+ 
906 907
 #elif ENABLED(MESH_BED_LEVELING)
907 908
 
908 909
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/TAZ4/Configuration.h Ver fichero

@@ -905,8 +905,9 @@
905 905
   #define UBL_PROBE_PT_2_Y 20
906 906
   #define UBL_PROBE_PT_3_X 180
907 907
   #define UBL_PROBE_PT_3_Y 20
908
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
909
-
908
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
909
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
910
+ 
910 911
 #elif ENABLED(MESH_BED_LEVELING)
911 912
 
912 913
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/TinyBoy2/Configuration.h Ver fichero

@@ -941,8 +941,9 @@
941 941
   #define UBL_PROBE_PT_2_Y 20
942 942
   #define UBL_PROBE_PT_3_X 180
943 943
   #define UBL_PROBE_PT_3_Y 20
944
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
945
-
944
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
945
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
946
+ 
946 947
 #elif ENABLED(MESH_BED_LEVELING)
947 948
 
948 949
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/WITBOX/Configuration.h Ver fichero

@@ -876,8 +876,9 @@
876 876
   #define UBL_PROBE_PT_2_Y 20
877 877
   #define UBL_PROBE_PT_3_X 180
878 878
   #define UBL_PROBE_PT_3_Y 20
879
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
880
-
879
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
880
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
881
+ 
881 882
 #elif ENABLED(MESH_BED_LEVELING)
882 883
 
883 884
   //===========================================================================

+ 2
- 1
Marlin/example_configurations/adafruit/ST7565/Configuration.h Ver fichero

@@ -885,7 +885,8 @@
885 885
   #define UBL_PROBE_PT_2_Y 20
886 886
   #define UBL_PROBE_PT_3_X 180
887 887
   #define UBL_PROBE_PT_3_Y 20
888
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
888
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
889
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
889 890
 
890 891
 #elif ENABLED(MESH_BED_LEVELING)
891 892
 

+ 2
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h Ver fichero

@@ -1004,7 +1004,8 @@
1004 1004
   #define UBL_PROBE_PT_2_Y 20
1005 1005
   #define UBL_PROBE_PT_3_X 180
1006 1006
   #define UBL_PROBE_PT_3_Y 20
1007
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
1007
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
1008
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
1008 1009
 
1009 1010
 #elif ENABLED(MESH_BED_LEVELING)
1010 1011
 

+ 2
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h Ver fichero

@@ -1006,7 +1006,8 @@
1006 1006
   #define UBL_PROBE_PT_2_Y 20
1007 1007
   #define UBL_PROBE_PT_3_X 180
1008 1008
   #define UBL_PROBE_PT_3_Y 20
1009
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
1009
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
1010
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
1010 1011
 
1011 1012
 #elif ENABLED(MESH_BED_LEVELING)
1012 1013
 

+ 2
- 1
Marlin/example_configurations/delta/generic/Configuration.h Ver fichero

@@ -995,7 +995,8 @@
995 995
   #define UBL_PROBE_PT_2_Y 20
996 996
   #define UBL_PROBE_PT_3_X 180
997 997
   #define UBL_PROBE_PT_3_Y 20
998
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
998
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
999
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
999 1000
 
1000 1001
 #elif ENABLED(MESH_BED_LEVELING)
1001 1002
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h Ver fichero

@@ -998,7 +998,8 @@
998 998
   #define UBL_PROBE_PT_2_Y 20
999 999
   #define UBL_PROBE_PT_3_X 180
1000 1000
   #define UBL_PROBE_PT_3_Y 20
1001
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
1001
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
1002
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
1002 1003
 
1003 1004
 #elif ENABLED(MESH_BED_LEVELING)
1004 1005
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h Ver fichero

@@ -1004,7 +1004,8 @@
1004 1004
   #define UBL_PROBE_PT_2_Y 20
1005 1005
   #define UBL_PROBE_PT_3_X 180
1006 1006
   #define UBL_PROBE_PT_3_Y 20
1007
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
1007
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
1008
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
1008 1009
 
1009 1010
 #elif ENABLED(MESH_BED_LEVELING)
1010 1011
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h Ver fichero

@@ -1062,7 +1062,8 @@
1062 1062
   #define UBL_PROBE_PT_2_Y 20
1063 1063
   #define UBL_PROBE_PT_3_X 180
1064 1064
   #define UBL_PROBE_PT_3_Y 20
1065
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
1065
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
1066
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
1066 1067
 
1067 1068
 #elif ENABLED(MESH_BED_LEVELING)
1068 1069
 

+ 2
- 1
Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h Ver fichero

@@ -902,7 +902,8 @@
902 902
   #define UBL_PROBE_PT_2_Y 63
903 903
   #define UBL_PROBE_PT_3_X 348
904 904
   #define UBL_PROBE_PT_3_Y 211
905
-  #define UBL_G26_MESH_EDITING      // Enable G26 mesh editing
905
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
906
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
906 907
 
907 908
 #elif ENABLED(MESH_BED_LEVELING)
908 909
 

+ 2
- 1
Marlin/example_configurations/makibox/Configuration.h Ver fichero

@@ -888,7 +888,8 @@
888 888
   #define UBL_PROBE_PT_2_Y 20
889 889
   #define UBL_PROBE_PT_3_X 180
890 890
   #define UBL_PROBE_PT_3_Y 20
891
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
891
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
892
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
892 893
 
893 894
 #elif ENABLED(MESH_BED_LEVELING)
894 895
 

+ 3
- 2
Marlin/example_configurations/tvrrug/Round2/Configuration.h Ver fichero

@@ -881,8 +881,9 @@
881 881
   #define UBL_PROBE_PT_2_Y 20
882 882
   #define UBL_PROBE_PT_3_X 180
883 883
   #define UBL_PROBE_PT_3_Y 20
884
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
885
-
884
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
885
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
886
+ 
886 887
 #elif ENABLED(MESH_BED_LEVELING)
887 888
 
888 889
   //===========================================================================

+ 2
- 1
Marlin/example_configurations/wt150/Configuration.h Ver fichero

@@ -890,7 +890,8 @@
890 890
   #define UBL_PROBE_PT_2_Y 20
891 891
   #define UBL_PROBE_PT_3_X 180
892 892
   #define UBL_PROBE_PT_3_Y 20
893
-  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
893
+  #define UBL_G26_MESH_VALIDATION   // Enable G26 mesh validation
894
+  #define UBL_MESH_EDIT_MOVES_Z     // Sophisticated users prefer no movement of nozzle
894 895
 
895 896
 #elif ENABLED(MESH_BED_LEVELING)
896 897
 

Loading…
Cancelar
Guardar