Parcourir la source

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 il y a 8 ans
Parent
révision
364f8fb613
30 fichiers modifiés avec 70 ajouts et 41 suppressions
  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 Voir le fichier

886
   #define UBL_PROBE_PT_2_Y 20
886
   #define UBL_PROBE_PT_2_Y 20
887
   #define UBL_PROBE_PT_3_X 180
887
   #define UBL_PROBE_PT_3_X 180
888
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
892
 #elif ENABLED(MESH_BED_LEVELING)
892
 
893
 

+ 2
- 2
Marlin/G26_Mesh_Validation_Tool.cpp Voir le fichier

26
 
26
 
27
 #include "MarlinConfig.h"
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
   #include "ubl.h"
31
   #include "ubl.h"
32
   #include "Marlin.h"
32
   #include "Marlin.h"
873
     return UBL_OK;
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 Voir le fichier

57
  * G12 - Clean tool
57
  * G12 - Clean tool
58
  * G20 - Set input units to inches
58
  * G20 - Set input units to inches
59
  * G21 - Set input units to millimeters
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
  * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
61
  * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
62
  * G28 - Home one or more axes
62
  * G28 - Home one or more axes
63
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
63
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
6613
 
6613
 
6614
 #endif // Z_MIN_PROBE_REPEATABILITY_TEST
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
   inline void gcode_M49() {
6618
   inline void gcode_M49() {
6619
     ubl.g26_debug_flag ^= true;
6619
     ubl.g26_debug_flag ^= true;
6621
     serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
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
  * M75: Start print timer
6627
  * M75: Start print timer
10096
           break;
10096
           break;
10097
       #endif // INCH_MODE_SUPPORT
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
         case 26: // G26: Mesh Validation Pattern generation
10100
         case 26: // G26: Mesh Validation Pattern generation
10101
           gcode_G26();
10101
           gcode_G26();
10102
           break;
10102
           break;
10248
           break;
10248
           break;
10249
       #endif // Z_MIN_PROBE_REPEATABILITY_TEST
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
         case 49: // M49: Turn on or off G26 debug flag for verbose output
10252
         case 49: // M49: Turn on or off G26 debug flag for verbose output
10253
           gcode_M49();
10253
           gcode_M49();
10254
           break;
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
       case 75: // M75: Start print timer
10257
       case 75: // M75: Start print timer
10258
         gcode_M75(); break;
10258
         gcode_M75(); break;

+ 3
- 1
Marlin/SanityCheck.h Voir le fichier

157
 #elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
157
 #elif defined(UBL_MESH_NUM_X_POINTS) || defined(UBL_MESH_NUM_Y_POINTS)
158
   #error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
158
   #error "UBL_MESH_NUM_[XY]_POINTS is now GRID_MAX_POINTS_[XY]. Please update your configuration."
159
 #elif defined(UBL_MESH_EDIT_ENABLED)
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
 #elif defined(BEEPER)
163
 #elif defined(BEEPER)
162
   #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
164
   #error "BEEPER is now BEEPER_PIN. Please update your pins definitions."
163
 #elif defined(SDCARDDETECT)
165
 #elif defined(SDCARDDETECT)

+ 2
- 1
Marlin/example_configurations/Cartesio/Configuration.h Voir le fichier

884
   #define UBL_PROBE_PT_2_Y 20
884
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_3_X 180
885
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
890
 #elif ENABLED(MESH_BED_LEVELING)
890
 
891
 

+ 2
- 1
Marlin/example_configurations/Felix/Configuration.h Voir le fichier

868
   #define UBL_PROBE_PT_2_Y 20
868
   #define UBL_PROBE_PT_2_Y 20
869
   #define UBL_PROBE_PT_3_X 180
869
   #define UBL_PROBE_PT_3_X 180
870
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
874
 #elif ENABLED(MESH_BED_LEVELING)
874
 
875
 

+ 2
- 1
Marlin/example_configurations/Felix/DUAL/Configuration.h Voir le fichier

868
   #define UBL_PROBE_PT_2_Y 20
868
   #define UBL_PROBE_PT_2_Y 20
869
   #define UBL_PROBE_PT_3_X 180
869
   #define UBL_PROBE_PT_3_X 180
870
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
874
 #elif ENABLED(MESH_BED_LEVELING)
874
 
875
 

+ 2
- 1
Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h Voir le fichier

890
   #define UBL_PROBE_PT_2_Y 25
890
   #define UBL_PROBE_PT_2_Y 25
891
   #define UBL_PROBE_PT_3_X 180
891
   #define UBL_PROBE_PT_3_X 180
892
   #define UBL_PROBE_PT_3_Y 25
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
 #elif ENABLED(MESH_BED_LEVELING)
896
 #elif ENABLED(MESH_BED_LEVELING)
896
 
897
 

+ 2
- 1
Marlin/example_configurations/Hephestos/Configuration.h Voir le fichier

876
   #define UBL_PROBE_PT_2_Y 20
876
   #define UBL_PROBE_PT_2_Y 20
877
   #define UBL_PROBE_PT_3_X 180
877
   #define UBL_PROBE_PT_3_X 180
878
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
882
 #elif ENABLED(MESH_BED_LEVELING)
882
 
883
 

+ 2
- 1
Marlin/example_configurations/Hephestos_2/Configuration.h Voir le fichier

879
   #define UBL_PROBE_PT_2_Y 20
879
   #define UBL_PROBE_PT_2_Y 20
880
   #define UBL_PROBE_PT_3_X 180
880
   #define UBL_PROBE_PT_3_X 180
881
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
885
 #elif ENABLED(MESH_BED_LEVELING)
885
 
886
 

+ 2
- 1
Marlin/example_configurations/K8200/Configuration.h Voir le fichier

914
   #define UBL_PROBE_PT_2_Y 20
914
   #define UBL_PROBE_PT_2_Y 20
915
   #define UBL_PROBE_PT_3_X 180
915
   #define UBL_PROBE_PT_3_X 180
916
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
920
 #elif ENABLED(MESH_BED_LEVELING)
920
 
921
 

+ 2
- 1
Marlin/example_configurations/K8400/Configuration.h Voir le fichier

885
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_2_Y 20
886
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_X 180
887
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
891
 #elif ENABLED(MESH_BED_LEVELING)
891
 
892
 

+ 2
- 1
Marlin/example_configurations/K8400/Dual-head/Configuration.h Voir le fichier

885
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_2_Y 20
886
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_X 180
887
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
891
 #elif ENABLED(MESH_BED_LEVELING)
891
 
892
 

+ 2
- 1
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Voir le fichier

885
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_2_Y 20
886
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_X 180
887
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
891
 #elif ENABLED(MESH_BED_LEVELING)
891
 
892
 

+ 2
- 1
Marlin/example_configurations/RigidBot/Configuration.h Voir le fichier

884
   #define UBL_PROBE_PT_2_Y 20
884
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_3_X 180
885
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
890
 #elif ENABLED(MESH_BED_LEVELING)
890
 
891
 

+ 3
- 2
Marlin/example_configurations/SCARA/Configuration.h Voir le fichier

901
   #define UBL_PROBE_PT_2_Y 20
901
   #define UBL_PROBE_PT_2_Y 20
902
   #define UBL_PROBE_PT_3_X 180
902
   #define UBL_PROBE_PT_3_X 180
903
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
907
 #elif ENABLED(MESH_BED_LEVELING)
907
 
908
 
908
   //===========================================================================
909
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/TAZ4/Configuration.h Voir le fichier

905
   #define UBL_PROBE_PT_2_Y 20
905
   #define UBL_PROBE_PT_2_Y 20
906
   #define UBL_PROBE_PT_3_X 180
906
   #define UBL_PROBE_PT_3_X 180
907
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
911
 #elif ENABLED(MESH_BED_LEVELING)
911
 
912
 
912
   //===========================================================================
913
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/TinyBoy2/Configuration.h Voir le fichier

941
   #define UBL_PROBE_PT_2_Y 20
941
   #define UBL_PROBE_PT_2_Y 20
942
   #define UBL_PROBE_PT_3_X 180
942
   #define UBL_PROBE_PT_3_X 180
943
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
947
 #elif ENABLED(MESH_BED_LEVELING)
947
 
948
 
948
   //===========================================================================
949
   //===========================================================================

+ 3
- 2
Marlin/example_configurations/WITBOX/Configuration.h Voir le fichier

876
   #define UBL_PROBE_PT_2_Y 20
876
   #define UBL_PROBE_PT_2_Y 20
877
   #define UBL_PROBE_PT_3_X 180
877
   #define UBL_PROBE_PT_3_X 180
878
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
882
 #elif ENABLED(MESH_BED_LEVELING)
882
 
883
 
883
   //===========================================================================
884
   //===========================================================================

+ 2
- 1
Marlin/example_configurations/adafruit/ST7565/Configuration.h Voir le fichier

885
   #define UBL_PROBE_PT_2_Y 20
885
   #define UBL_PROBE_PT_2_Y 20
886
   #define UBL_PROBE_PT_3_X 180
886
   #define UBL_PROBE_PT_3_X 180
887
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
891
 #elif ENABLED(MESH_BED_LEVELING)
891
 
892
 

+ 2
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h Voir le fichier

1004
   #define UBL_PROBE_PT_2_Y 20
1004
   #define UBL_PROBE_PT_2_Y 20
1005
   #define UBL_PROBE_PT_3_X 180
1005
   #define UBL_PROBE_PT_3_X 180
1006
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1010
 #elif ENABLED(MESH_BED_LEVELING)
1010
 
1011
 

+ 2
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h Voir le fichier

1006
   #define UBL_PROBE_PT_2_Y 20
1006
   #define UBL_PROBE_PT_2_Y 20
1007
   #define UBL_PROBE_PT_3_X 180
1007
   #define UBL_PROBE_PT_3_X 180
1008
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1012
 #elif ENABLED(MESH_BED_LEVELING)
1012
 
1013
 

+ 2
- 1
Marlin/example_configurations/delta/generic/Configuration.h Voir le fichier

995
   #define UBL_PROBE_PT_2_Y 20
995
   #define UBL_PROBE_PT_2_Y 20
996
   #define UBL_PROBE_PT_3_X 180
996
   #define UBL_PROBE_PT_3_X 180
997
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1001
 #elif ENABLED(MESH_BED_LEVELING)
1001
 
1002
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h Voir le fichier

998
   #define UBL_PROBE_PT_2_Y 20
998
   #define UBL_PROBE_PT_2_Y 20
999
   #define UBL_PROBE_PT_3_X 180
999
   #define UBL_PROBE_PT_3_X 180
1000
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1004
 #elif ENABLED(MESH_BED_LEVELING)
1004
 
1005
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h Voir le fichier

1004
   #define UBL_PROBE_PT_2_Y 20
1004
   #define UBL_PROBE_PT_2_Y 20
1005
   #define UBL_PROBE_PT_3_X 180
1005
   #define UBL_PROBE_PT_3_X 180
1006
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1010
 #elif ENABLED(MESH_BED_LEVELING)
1010
 
1011
 

+ 2
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h Voir le fichier

1062
   #define UBL_PROBE_PT_2_Y 20
1062
   #define UBL_PROBE_PT_2_Y 20
1063
   #define UBL_PROBE_PT_3_X 180
1063
   #define UBL_PROBE_PT_3_X 180
1064
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
1068
 #elif ENABLED(MESH_BED_LEVELING)
1068
 
1069
 

+ 2
- 1
Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h Voir le fichier

902
   #define UBL_PROBE_PT_2_Y 63
902
   #define UBL_PROBE_PT_2_Y 63
903
   #define UBL_PROBE_PT_3_X 348
903
   #define UBL_PROBE_PT_3_X 348
904
   #define UBL_PROBE_PT_3_Y 211
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
 #elif ENABLED(MESH_BED_LEVELING)
908
 #elif ENABLED(MESH_BED_LEVELING)
908
 
909
 

+ 2
- 1
Marlin/example_configurations/makibox/Configuration.h Voir le fichier

888
   #define UBL_PROBE_PT_2_Y 20
888
   #define UBL_PROBE_PT_2_Y 20
889
   #define UBL_PROBE_PT_3_X 180
889
   #define UBL_PROBE_PT_3_X 180
890
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
894
 #elif ENABLED(MESH_BED_LEVELING)
894
 
895
 

+ 3
- 2
Marlin/example_configurations/tvrrug/Round2/Configuration.h Voir le fichier

881
   #define UBL_PROBE_PT_2_Y 20
881
   #define UBL_PROBE_PT_2_Y 20
882
   #define UBL_PROBE_PT_3_X 180
882
   #define UBL_PROBE_PT_3_X 180
883
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
887
 #elif ENABLED(MESH_BED_LEVELING)
887
 
888
 
888
   //===========================================================================
889
   //===========================================================================

+ 2
- 1
Marlin/example_configurations/wt150/Configuration.h Voir le fichier

890
   #define UBL_PROBE_PT_2_Y 20
890
   #define UBL_PROBE_PT_2_Y 20
891
   #define UBL_PROBE_PT_3_X 180
891
   #define UBL_PROBE_PT_3_X 180
892
   #define UBL_PROBE_PT_3_Y 20
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
 #elif ENABLED(MESH_BED_LEVELING)
896
 #elif ENABLED(MESH_BED_LEVELING)
896
 
897
 

Chargement…
Annuler
Enregistrer