Просмотр исходного кода

Disable UBL_G26_MESH_EDITING by default

Scott Lahteine 8 лет назад
Родитель
Сommit
edbc024d76
26 измененных файлов: 32 добавлений и 32 удалений
  1. 1
    1
      .travis.yml
  2. 1
    1
      Marlin/Configuration.h
  3. 2
    2
      Marlin/G26_Mesh_Validation_Tool.cpp
  4. 6
    6
      Marlin/Marlin_main.cpp
  5. 1
    1
      Marlin/UBL_G29.cpp
  6. 1
    1
      Marlin/example_configurations/Cartesio/Configuration.h
  7. 1
    1
      Marlin/example_configurations/Felix/Configuration.h
  8. 1
    1
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  9. 1
    1
      Marlin/example_configurations/Hephestos/Configuration.h
  10. 1
    1
      Marlin/example_configurations/Hephestos_2/Configuration.h
  11. 1
    1
      Marlin/example_configurations/K8200/Configuration.h
  12. 1
    1
      Marlin/example_configurations/K8400/Configuration.h
  13. 1
    1
      Marlin/example_configurations/K8400/Dual-head/Configuration.h
  14. 1
    1
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  15. 1
    1
      Marlin/example_configurations/RigidBot/Configuration.h
  16. 1
    1
      Marlin/example_configurations/SCARA/Configuration.h
  17. 1
    1
      Marlin/example_configurations/TAZ4/Configuration.h
  18. 1
    1
      Marlin/example_configurations/WITBOX/Configuration.h
  19. 1
    1
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  20. 1
    1
      Marlin/example_configurations/delta/flsun_kossel_mini/Configuration.h
  21. 1
    1
      Marlin/example_configurations/delta/generic/Configuration.h
  22. 1
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  23. 1
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  24. 1
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  25. 1
    1
      Marlin/example_configurations/makibox/Configuration.h
  26. 1
    1
      Marlin/example_configurations/tvrrug/Round2/Configuration.h

+ 1
- 1
.travis.yml Просмотреть файл

120
   # Test a simple build of AUTO_BED_LEVELING_UBL
120
   # Test a simple build of AUTO_BED_LEVELING_UBL
121
   #
121
   #
122
   - restore_configs
122
   - restore_configs
123
-  - opt_enable AUTO_BED_LEVELING_UBL FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
123
+  - opt_enable AUTO_BED_LEVELING_UBL UBL_G26_MESH_EDITING FIX_MOUNTED_PROBE EEPROM_SETTINGS G3D_PANEL
124
   - build_marlin
124
   - build_marlin
125
   #
125
   #
126
   # Test a Sled Z Probe
126
   # Test a Sled Z Probe

+ 1
- 1
Marlin/Configuration.h Просмотреть файл

862
   #define UBL_PROBE_PT_2_Y 20
862
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_3_X 180
863
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_Y 20
864
   #define UBL_PROBE_PT_3_Y 20
865
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
865
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
866
 
866
 
867
 #elif ENABLED(MESH_BED_LEVELING)
867
 #elif ENABLED(MESH_BED_LEVELING)
868
 
868
 

+ 2
- 2
Marlin/G26_Mesh_Validation_Tool.cpp Просмотреть файл

26
 
26
 
27
 #include "MarlinConfig.h"
27
 #include "MarlinConfig.h"
28
 
28
 
29
-#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
29
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
30
 
30
 
31
   #include "Marlin.h"
31
   #include "Marlin.h"
32
   #include "Configuration.h"
32
   #include "Configuration.h"
896
     return UBL_OK;
896
     return UBL_OK;
897
   }
897
   }
898
 
898
 
899
-#endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
899
+#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING

+ 6
- 6
Marlin/Marlin_main.cpp Просмотреть файл

5344
 
5344
 
5345
 #endif // Z_MIN_PROBE_REPEATABILITY_TEST
5345
 #endif // Z_MIN_PROBE_REPEATABILITY_TEST
5346
 
5346
 
5347
-#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
5347
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
5348
 
5348
 
5349
   inline void gcode_M49() {
5349
   inline void gcode_M49() {
5350
     ubl.g26_debug_flag = !ubl.g26_debug_flag;
5350
     ubl.g26_debug_flag = !ubl.g26_debug_flag;
5352
     serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
5352
     serialprintPGM(ubl.g26_debug_flag ? PSTR("on.") : PSTR("off."));
5353
   }
5353
   }
5354
 
5354
 
5355
-#endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
5355
+#endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
5356
 
5356
 
5357
 /**
5357
 /**
5358
  * M75: Start print timer
5358
  * M75: Start print timer
8601
           break;
8601
           break;
8602
       #endif // INCH_MODE_SUPPORT
8602
       #endif // INCH_MODE_SUPPORT
8603
 
8603
 
8604
-      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
8604
+      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
8605
         case 26: // G26: Mesh Validation Pattern generation
8605
         case 26: // G26: Mesh Validation Pattern generation
8606
           gcode_G26();
8606
           gcode_G26();
8607
           break;
8607
           break;
8617
         gcode_G28();
8617
         gcode_G28();
8618
         break;
8618
         break;
8619
 
8619
 
8620
-      #if PLANNER_LEVELING && !ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
8620
+      #if PLANNER_LEVELING && !ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
8621
         case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
8621
         case 29: // G29 Detailed Z probe, probes the bed at 3 or more points,
8622
                  // or provides access to the UBL System if enabled.
8622
                  // or provides access to the UBL System if enabled.
8623
           gcode_G29();
8623
           gcode_G29();
8733
           break;
8733
           break;
8734
       #endif // Z_MIN_PROBE_REPEATABILITY_TEST
8734
       #endif // Z_MIN_PROBE_REPEATABILITY_TEST
8735
 
8735
 
8736
-      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
8736
+      #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
8737
         case 49: // M49: Turn on or off G26 debug flag for verbose output
8737
         case 49: // M49: Turn on or off G26 debug flag for verbose output
8738
           gcode_M49();
8738
           gcode_M49();
8739
           break;
8739
           break;
8740
-      #endif // AUTO_BED_LEVELING_UBL && UBL_MESH_EDIT_ENABLED
8740
+      #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING
8741
 
8741
 
8742
       case 75: // M75: Start print timer
8742
       case 75: // M75: Start print timer
8743
         gcode_M75(); break;
8743
         gcode_M75(); break;

+ 1
- 1
Marlin/UBL_G29.cpp Просмотреть файл

22
 
22
 
23
 #include "MarlinConfig.h"
23
 #include "MarlinConfig.h"
24
 
24
 
25
-#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_MESH_EDIT_ENABLED)
25
+#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
26
   //#include "vector_3.h"
26
   //#include "vector_3.h"
27
   //#include "qr_solve.h"
27
   //#include "qr_solve.h"
28
 
28
 

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration.h Просмотреть файл

863
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_2_Y 20
864
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_X 180
865
   #define UBL_PROBE_PT_3_Y 20
865
   #define UBL_PROBE_PT_3_Y 20
866
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
866
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
867
 
867
 
868
 #elif ENABLED(MESH_BED_LEVELING)
868
 #elif ENABLED(MESH_BED_LEVELING)
869
 
869
 

+ 1
- 1
Marlin/example_configurations/Felix/Configuration.h Просмотреть файл

846
   #define UBL_PROBE_PT_2_Y 20
846
   #define UBL_PROBE_PT_2_Y 20
847
   #define UBL_PROBE_PT_3_X 180
847
   #define UBL_PROBE_PT_3_X 180
848
   #define UBL_PROBE_PT_3_Y 20
848
   #define UBL_PROBE_PT_3_Y 20
849
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
849
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
850
 
850
 
851
 #elif ENABLED(MESH_BED_LEVELING)
851
 #elif ENABLED(MESH_BED_LEVELING)
852
 
852
 

+ 1
- 1
Marlin/example_configurations/Felix/DUAL/Configuration.h Просмотреть файл

846
   #define UBL_PROBE_PT_2_Y 20
846
   #define UBL_PROBE_PT_2_Y 20
847
   #define UBL_PROBE_PT_3_X 180
847
   #define UBL_PROBE_PT_3_X 180
848
   #define UBL_PROBE_PT_3_Y 20
848
   #define UBL_PROBE_PT_3_Y 20
849
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
849
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
850
 
850
 
851
 #elif ENABLED(MESH_BED_LEVELING)
851
 #elif ENABLED(MESH_BED_LEVELING)
852
 
852
 

+ 1
- 1
Marlin/example_configurations/Hephestos/Configuration.h Просмотреть файл

855
   #define UBL_PROBE_PT_2_Y 20
855
   #define UBL_PROBE_PT_2_Y 20
856
   #define UBL_PROBE_PT_3_X 180
856
   #define UBL_PROBE_PT_3_X 180
857
   #define UBL_PROBE_PT_3_Y 20
857
   #define UBL_PROBE_PT_3_Y 20
858
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
858
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
859
 
859
 
860
 #elif ENABLED(MESH_BED_LEVELING)
860
 #elif ENABLED(MESH_BED_LEVELING)
861
 
861
 

+ 1
- 1
Marlin/example_configurations/Hephestos_2/Configuration.h Просмотреть файл

857
   #define UBL_PROBE_PT_2_Y 20
857
   #define UBL_PROBE_PT_2_Y 20
858
   #define UBL_PROBE_PT_3_X 180
858
   #define UBL_PROBE_PT_3_X 180
859
   #define UBL_PROBE_PT_3_Y 20
859
   #define UBL_PROBE_PT_3_Y 20
860
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
860
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
861
 
861
 
862
 #elif ENABLED(MESH_BED_LEVELING)
862
 #elif ENABLED(MESH_BED_LEVELING)
863
 
863
 

+ 1
- 1
Marlin/example_configurations/K8200/Configuration.h Просмотреть файл

892
   #define UBL_PROBE_PT_2_Y 20
892
   #define UBL_PROBE_PT_2_Y 20
893
   #define UBL_PROBE_PT_3_X 180
893
   #define UBL_PROBE_PT_3_X 180
894
   #define UBL_PROBE_PT_3_Y 20
894
   #define UBL_PROBE_PT_3_Y 20
895
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
895
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
896
 
896
 
897
 #elif ENABLED(MESH_BED_LEVELING)
897
 #elif ENABLED(MESH_BED_LEVELING)
898
 
898
 

+ 1
- 1
Marlin/example_configurations/K8400/Configuration.h Просмотреть файл

863
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_2_Y 20
864
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_X 180
865
   #define UBL_PROBE_PT_3_Y 20
865
   #define UBL_PROBE_PT_3_Y 20
866
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
866
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
867
 
867
 
868
 #elif ENABLED(MESH_BED_LEVELING)
868
 #elif ENABLED(MESH_BED_LEVELING)
869
 
869
 

+ 1
- 1
Marlin/example_configurations/K8400/Dual-head/Configuration.h Просмотреть файл

863
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_2_Y 20
864
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_X 180
865
   #define UBL_PROBE_PT_3_Y 20
865
   #define UBL_PROBE_PT_3_Y 20
866
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
866
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
867
 
867
 
868
 #elif ENABLED(MESH_BED_LEVELING)
868
 #elif ENABLED(MESH_BED_LEVELING)
869
 
869
 

+ 1
- 1
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Просмотреть файл

863
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_2_Y 20
864
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_X 180
865
   #define UBL_PROBE_PT_3_Y 20
865
   #define UBL_PROBE_PT_3_Y 20
866
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
866
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
867
 
867
 
868
 #elif ENABLED(MESH_BED_LEVELING)
868
 #elif ENABLED(MESH_BED_LEVELING)
869
 
869
 

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration.h Просмотреть файл

862
   #define UBL_PROBE_PT_2_Y 20
862
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_3_X 180
863
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_Y 20
864
   #define UBL_PROBE_PT_3_Y 20
865
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
865
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
866
 
866
 
867
 #elif ENABLED(MESH_BED_LEVELING)
867
 #elif ENABLED(MESH_BED_LEVELING)
868
 
868
 

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration.h Просмотреть файл

878
   #define UBL_PROBE_PT_2_Y 20
878
   #define UBL_PROBE_PT_2_Y 20
879
   #define UBL_PROBE_PT_3_X 180
879
   #define UBL_PROBE_PT_3_X 180
880
   #define UBL_PROBE_PT_3_Y 20
880
   #define UBL_PROBE_PT_3_Y 20
881
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
881
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
882
 
882
 
883
 #elif ENABLED(MESH_BED_LEVELING)
883
 #elif ENABLED(MESH_BED_LEVELING)
884
 
884
 

+ 1
- 1
Marlin/example_configurations/TAZ4/Configuration.h Просмотреть файл

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_MESH_EDIT_ENABLED     // Enable G26 mesh editing
887
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
888
 
888
 
889
 #elif ENABLED(MESH_BED_LEVELING)
889
 #elif ENABLED(MESH_BED_LEVELING)
890
 
890
 

+ 1
- 1
Marlin/example_configurations/WITBOX/Configuration.h Просмотреть файл

855
   #define UBL_PROBE_PT_2_Y 20
855
   #define UBL_PROBE_PT_2_Y 20
856
   #define UBL_PROBE_PT_3_X 180
856
   #define UBL_PROBE_PT_3_X 180
857
   #define UBL_PROBE_PT_3_Y 20
857
   #define UBL_PROBE_PT_3_Y 20
858
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
858
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
859
 
859
 
860
 #elif ENABLED(MESH_BED_LEVELING)
860
 #elif ENABLED(MESH_BED_LEVELING)
861
 
861
 

+ 1
- 1
Marlin/example_configurations/adafruit/ST7565/Configuration.h Просмотреть файл

863
   #define UBL_PROBE_PT_2_Y 20
863
   #define UBL_PROBE_PT_2_Y 20
864
   #define UBL_PROBE_PT_3_X 180
864
   #define UBL_PROBE_PT_3_X 180
865
   #define UBL_PROBE_PT_3_Y 20
865
   #define UBL_PROBE_PT_3_Y 20
866
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
866
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
867
 
867
 
868
 #elif ENABLED(MESH_BED_LEVELING)
868
 #elif ENABLED(MESH_BED_LEVELING)
869
 
869
 

+ 1
- 1
Marlin/example_configurations/delta/flsun_kossel_mini/Configuration.h Просмотреть файл

968
   #define UBL_PROBE_PT_2_Y 20
968
   #define UBL_PROBE_PT_2_Y 20
969
   #define UBL_PROBE_PT_3_X 180
969
   #define UBL_PROBE_PT_3_X 180
970
   #define UBL_PROBE_PT_3_Y 20
970
   #define UBL_PROBE_PT_3_Y 20
971
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
971
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
972
 
972
 
973
 #elif ENABLED(MESH_BED_LEVELING)
973
 #elif ENABLED(MESH_BED_LEVELING)
974
 
974
 

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration.h Просмотреть файл

954
   #define UBL_PROBE_PT_2_Y 20
954
   #define UBL_PROBE_PT_2_Y 20
955
   #define UBL_PROBE_PT_3_X 180
955
   #define UBL_PROBE_PT_3_X 180
956
   #define UBL_PROBE_PT_3_Y 20
956
   #define UBL_PROBE_PT_3_Y 20
957
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
957
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
958
 
958
 
959
 #elif ENABLED(MESH_BED_LEVELING)
959
 #elif ENABLED(MESH_BED_LEVELING)
960
 
960
 

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h Просмотреть файл

958
   #define UBL_PROBE_PT_2_Y 20
958
   #define UBL_PROBE_PT_2_Y 20
959
   #define UBL_PROBE_PT_3_X 180
959
   #define UBL_PROBE_PT_3_X 180
960
   #define UBL_PROBE_PT_3_Y 20
960
   #define UBL_PROBE_PT_3_Y 20
961
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
961
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
962
 
962
 
963
 #elif ENABLED(MESH_BED_LEVELING)
963
 #elif ENABLED(MESH_BED_LEVELING)
964
 
964
 

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h Просмотреть файл

957
   #define UBL_PROBE_PT_2_Y 20
957
   #define UBL_PROBE_PT_2_Y 20
958
   #define UBL_PROBE_PT_3_X 180
958
   #define UBL_PROBE_PT_3_X 180
959
   #define UBL_PROBE_PT_3_Y 20
959
   #define UBL_PROBE_PT_3_Y 20
960
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
960
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
961
 
961
 
962
 #elif ENABLED(MESH_BED_LEVELING)
962
 #elif ENABLED(MESH_BED_LEVELING)
963
 
963
 

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h Просмотреть файл

967
   #define UBL_PROBE_PT_2_Y 20
967
   #define UBL_PROBE_PT_2_Y 20
968
   #define UBL_PROBE_PT_3_X 180
968
   #define UBL_PROBE_PT_3_X 180
969
   #define UBL_PROBE_PT_3_Y 20
969
   #define UBL_PROBE_PT_3_Y 20
970
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
970
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
971
 
971
 
972
 #elif ENABLED(MESH_BED_LEVELING)
972
 #elif ENABLED(MESH_BED_LEVELING)
973
 
973
 

+ 1
- 1
Marlin/example_configurations/makibox/Configuration.h Просмотреть файл

866
   #define UBL_PROBE_PT_2_Y 20
866
   #define UBL_PROBE_PT_2_Y 20
867
   #define UBL_PROBE_PT_3_X 180
867
   #define UBL_PROBE_PT_3_X 180
868
   #define UBL_PROBE_PT_3_Y 20
868
   #define UBL_PROBE_PT_3_Y 20
869
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
869
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
870
 
870
 
871
 #elif ENABLED(MESH_BED_LEVELING)
871
 #elif ENABLED(MESH_BED_LEVELING)
872
 
872
 

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration.h Просмотреть файл

859
   #define UBL_PROBE_PT_2_Y 20
859
   #define UBL_PROBE_PT_2_Y 20
860
   #define UBL_PROBE_PT_3_X 180
860
   #define UBL_PROBE_PT_3_X 180
861
   #define UBL_PROBE_PT_3_Y 20
861
   #define UBL_PROBE_PT_3_Y 20
862
-  #define UBL_MESH_EDIT_ENABLED     // Enable G26 mesh editing
862
+  //#define UBL_G26_MESH_EDITING    // Enable G26 mesh editing
863
 
863
 
864
 #elif ENABLED(MESH_BED_LEVELING)
864
 #elif ENABLED(MESH_BED_LEVELING)
865
 
865
 

Загрузка…
Отмена
Сохранить