Browse Source

Apply SEGMENT_LEVELED_MOVES to example configs

Scott Lahteine 7 years ago
parent
commit
80929c2637
37 changed files with 185 additions and 0 deletions
  1. 5
    0
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration.h
  2. 5
    0
      Marlin/example_configurations/AliExpress/CL-260/Configuration.h
  3. 5
    0
      Marlin/example_configurations/Anet/A6/Configuration.h
  4. 5
    0
      Marlin/example_configurations/Anet/A8/Configuration.h
  5. 5
    0
      Marlin/example_configurations/BQ/Hephestos/Configuration.h
  6. 5
    0
      Marlin/example_configurations/BQ/Hephestos_2/Configuration.h
  7. 5
    0
      Marlin/example_configurations/BQ/WITBOX/Configuration.h
  8. 5
    0
      Marlin/example_configurations/Cartesio/Configuration.h
  9. 5
    0
      Marlin/example_configurations/Creality/CR-10/Configuration.h
  10. 5
    0
      Marlin/example_configurations/Felix/Configuration.h
  11. 5
    0
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  12. 5
    0
      Marlin/example_configurations/FolgerTech/i3-2020/Configuration.h
  13. 5
    0
      Marlin/example_configurations/Geeetech/GT2560/Configuration.h
  14. 5
    0
      Marlin/example_configurations/Geeetech/I3_Pro_X-GT2560/Configuration.h
  15. 5
    0
      Marlin/example_configurations/Infitary/i3-M508/Configuration.h
  16. 5
    0
      Marlin/example_configurations/Malyan/M150/Configuration.h
  17. 5
    0
      Marlin/example_configurations/Micromake/C1/basic/Configuration.h
  18. 5
    0
      Marlin/example_configurations/Micromake/C1/enhanced/Configuration.h
  19. 5
    0
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  20. 5
    0
      Marlin/example_configurations/RigidBot/Configuration.h
  21. 5
    0
      Marlin/example_configurations/SCARA/Configuration.h
  22. 5
    0
      Marlin/example_configurations/Sanguinololu/Configuration.h
  23. 5
    0
      Marlin/example_configurations/TinyBoy2/Configuration.h
  24. 5
    0
      Marlin/example_configurations/Velleman/K8200/Configuration.h
  25. 5
    0
      Marlin/example_configurations/Velleman/K8400/Configuration.h
  26. 5
    0
      Marlin/example_configurations/Velleman/K8400/Dual-head/Configuration.h
  27. 5
    0
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  28. 5
    0
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h
  29. 5
    0
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h
  30. 5
    0
      Marlin/example_configurations/delta/generic/Configuration.h
  31. 5
    0
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  32. 5
    0
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  33. 5
    0
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  34. 5
    0
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration.h
  35. 5
    0
      Marlin/example_configurations/makibox/Configuration.h
  36. 5
    0
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  37. 5
    0
      Marlin/example_configurations/wt150/Configuration.h

+ 5
- 0
Marlin/example_configurations/AlephObjects/TAZ4/Configuration.h View File

911
   // The height can be set with M420 Z<height>
911
   // The height can be set with M420 Z<height>
912
   #define ENABLE_LEVELING_FADE_HEIGHT
912
   #define ENABLE_LEVELING_FADE_HEIGHT
913
 
913
 
914
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
915
+  // split up moves into short segments like a Delta.
916
+  #define SEGMENT_LEVELED_MOVES
917
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
918
+
914
   /**
919
   /**
915
    * Enable the G26 Mesh Validation Pattern tool.
920
    * Enable the G26 Mesh Validation Pattern tool.
916
    */
921
    */

+ 5
- 0
Marlin/example_configurations/AliExpress/CL-260/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/Anet/A6/Configuration.h View File

1010
   // The height can be set with M420 Z<height>
1010
   // The height can be set with M420 Z<height>
1011
   #define ENABLE_LEVELING_FADE_HEIGHT
1011
   #define ENABLE_LEVELING_FADE_HEIGHT
1012
 
1012
 
1013
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1014
+  // split up moves into short segments like a Delta.
1015
+  #define SEGMENT_LEVELED_MOVES
1016
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1017
+
1013
   /**
1018
   /**
1014
    * Enable the G26 Mesh Validation Pattern tool.
1019
    * Enable the G26 Mesh Validation Pattern tool.
1015
    */
1020
    */

+ 5
- 0
Marlin/example_configurations/Anet/A8/Configuration.h View File

898
   // The height can be set with M420 Z<height>
898
   // The height can be set with M420 Z<height>
899
   #define ENABLE_LEVELING_FADE_HEIGHT
899
   #define ENABLE_LEVELING_FADE_HEIGHT
900
 
900
 
901
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
902
+  // split up moves into short segments like a Delta.
903
+  #define SEGMENT_LEVELED_MOVES
904
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
905
+
901
   /**
906
   /**
902
    * Enable the G26 Mesh Validation Pattern tool.
907
    * Enable the G26 Mesh Validation Pattern tool.
903
    */
908
    */

+ 5
- 0
Marlin/example_configurations/BQ/Hephestos/Configuration.h View File

882
   // The height can be set with M420 Z<height>
882
   // The height can be set with M420 Z<height>
883
   #define ENABLE_LEVELING_FADE_HEIGHT
883
   #define ENABLE_LEVELING_FADE_HEIGHT
884
 
884
 
885
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
886
+  // split up moves into short segments like a Delta.
887
+  #define SEGMENT_LEVELED_MOVES
888
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
889
+
885
   /**
890
   /**
886
    * Enable the G26 Mesh Validation Pattern tool.
891
    * Enable the G26 Mesh Validation Pattern tool.
887
    */
892
    */

+ 5
- 0
Marlin/example_configurations/BQ/Hephestos_2/Configuration.h View File

892
   // The height can be set with M420 Z<height>
892
   // The height can be set with M420 Z<height>
893
   #define ENABLE_LEVELING_FADE_HEIGHT
893
   #define ENABLE_LEVELING_FADE_HEIGHT
894
 
894
 
895
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
896
+  // split up moves into short segments like a Delta.
897
+  #define SEGMENT_LEVELED_MOVES
898
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
899
+
895
   /**
900
   /**
896
    * Enable the G26 Mesh Validation Pattern tool.
901
    * Enable the G26 Mesh Validation Pattern tool.
897
    */
902
    */

+ 5
- 0
Marlin/example_configurations/BQ/WITBOX/Configuration.h View File

882
   // The height can be set with M420 Z<height>
882
   // The height can be set with M420 Z<height>
883
   #define ENABLE_LEVELING_FADE_HEIGHT
883
   #define ENABLE_LEVELING_FADE_HEIGHT
884
 
884
 
885
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
886
+  // split up moves into short segments like a Delta.
887
+  #define SEGMENT_LEVELED_MOVES
888
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
889
+
885
   /**
890
   /**
886
    * Enable the G26 Mesh Validation Pattern tool.
891
    * Enable the G26 Mesh Validation Pattern tool.
887
    */
892
    */

+ 5
- 0
Marlin/example_configurations/Cartesio/Configuration.h View File

890
   // The height can be set with M420 Z<height>
890
   // The height can be set with M420 Z<height>
891
   #define ENABLE_LEVELING_FADE_HEIGHT
891
   #define ENABLE_LEVELING_FADE_HEIGHT
892
 
892
 
893
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
894
+  // split up moves into short segments like a Delta.
895
+  #define SEGMENT_LEVELED_MOVES
896
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
897
+
893
   /**
898
   /**
894
    * Enable the G26 Mesh Validation Pattern tool.
899
    * Enable the G26 Mesh Validation Pattern tool.
895
    */
900
    */

+ 5
- 0
Marlin/example_configurations/Creality/CR-10/Configuration.h View File

901
   // The height can be set with M420 Z<height>
901
   // The height can be set with M420 Z<height>
902
   #define ENABLE_LEVELING_FADE_HEIGHT
902
   #define ENABLE_LEVELING_FADE_HEIGHT
903
 
903
 
904
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
905
+  // split up moves into short segments like a Delta.
906
+  #define SEGMENT_LEVELED_MOVES
907
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
908
+
904
   /**
909
   /**
905
    * Enable the G26 Mesh Validation Pattern tool.
910
    * Enable the G26 Mesh Validation Pattern tool.
906
    */
911
    */

+ 5
- 0
Marlin/example_configurations/Felix/Configuration.h View File

873
   // The height can be set with M420 Z<height>
873
   // The height can be set with M420 Z<height>
874
   #define ENABLE_LEVELING_FADE_HEIGHT
874
   #define ENABLE_LEVELING_FADE_HEIGHT
875
 
875
 
876
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
877
+  // split up moves into short segments like a Delta.
878
+  #define SEGMENT_LEVELED_MOVES
879
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
880
+
876
   /**
881
   /**
877
    * Enable the G26 Mesh Validation Pattern tool.
882
    * Enable the G26 Mesh Validation Pattern tool.
878
    */
883
    */

+ 5
- 0
Marlin/example_configurations/Felix/DUAL/Configuration.h View File

873
   // The height can be set with M420 Z<height>
873
   // The height can be set with M420 Z<height>
874
   #define ENABLE_LEVELING_FADE_HEIGHT
874
   #define ENABLE_LEVELING_FADE_HEIGHT
875
 
875
 
876
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
877
+  // split up moves into short segments like a Delta.
878
+  #define SEGMENT_LEVELED_MOVES
879
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
880
+
876
   /**
881
   /**
877
    * Enable the G26 Mesh Validation Pattern tool.
882
    * Enable the G26 Mesh Validation Pattern tool.
878
    */
883
    */

+ 5
- 0
Marlin/example_configurations/FolgerTech/i3-2020/Configuration.h View File

894
   // The height can be set with M420 Z<height>
894
   // The height can be set with M420 Z<height>
895
   #define ENABLE_LEVELING_FADE_HEIGHT
895
   #define ENABLE_LEVELING_FADE_HEIGHT
896
 
896
 
897
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
898
+  // split up moves into short segments like a Delta.
899
+  #define SEGMENT_LEVELED_MOVES
900
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
901
+
897
   /**
902
   /**
898
    * Enable the G26 Mesh Validation Pattern tool.
903
    * Enable the G26 Mesh Validation Pattern tool.
899
    */
904
    */

+ 5
- 0
Marlin/example_configurations/Geeetech/GT2560/Configuration.h View File

906
   // The height can be set with M420 Z<height>
906
   // The height can be set with M420 Z<height>
907
   #define ENABLE_LEVELING_FADE_HEIGHT
907
   #define ENABLE_LEVELING_FADE_HEIGHT
908
 
908
 
909
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
910
+  // split up moves into short segments like a Delta.
911
+  #define SEGMENT_LEVELED_MOVES
912
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
913
+
909
   /**
914
   /**
910
    * Enable the G26 Mesh Validation Pattern tool.
915
    * Enable the G26 Mesh Validation Pattern tool.
911
    */
916
    */

+ 5
- 0
Marlin/example_configurations/Geeetech/I3_Pro_X-GT2560/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/Infitary/i3-M508/Configuration.h View File

895
   // The height can be set with M420 Z<height>
895
   // The height can be set with M420 Z<height>
896
   #define ENABLE_LEVELING_FADE_HEIGHT
896
   #define ENABLE_LEVELING_FADE_HEIGHT
897
 
897
 
898
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
899
+  // split up moves into short segments like a Delta.
900
+  #define SEGMENT_LEVELED_MOVES
901
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
902
+
898
   /**
903
   /**
899
    * Enable the G26 Mesh Validation Pattern tool.
904
    * Enable the G26 Mesh Validation Pattern tool.
900
    */
905
    */

+ 5
- 0
Marlin/example_configurations/Malyan/M150/Configuration.h View File

919
   // The height can be set with M420 Z<height>
919
   // The height can be set with M420 Z<height>
920
   #define ENABLE_LEVELING_FADE_HEIGHT
920
   #define ENABLE_LEVELING_FADE_HEIGHT
921
 
921
 
922
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
923
+  // split up moves into short segments like a Delta.
924
+  #define SEGMENT_LEVELED_MOVES
925
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
926
+
922
   /**
927
   /**
923
    * Enable the G26 Mesh Validation Pattern tool.
928
    * Enable the G26 Mesh Validation Pattern tool.
924
    */
929
    */

+ 5
- 0
Marlin/example_configurations/Micromake/C1/basic/Configuration.h View File

895
   // The height can be set with M420 Z<height>
895
   // The height can be set with M420 Z<height>
896
   #define ENABLE_LEVELING_FADE_HEIGHT
896
   #define ENABLE_LEVELING_FADE_HEIGHT
897
 
897
 
898
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
899
+  // split up moves into short segments like a Delta.
900
+  #define SEGMENT_LEVELED_MOVES
901
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
902
+
898
   /**
903
   /**
899
    * Enable the G26 Mesh Validation Pattern tool.
904
    * Enable the G26 Mesh Validation Pattern tool.
900
    */
905
    */

+ 5
- 0
Marlin/example_configurations/Micromake/C1/enhanced/Configuration.h View File

895
   // The height can be set with M420 Z<height>
895
   // The height can be set with M420 Z<height>
896
   #define ENABLE_LEVELING_FADE_HEIGHT
896
   #define ENABLE_LEVELING_FADE_HEIGHT
897
 
897
 
898
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
899
+  // split up moves into short segments like a Delta.
900
+  #define SEGMENT_LEVELED_MOVES
901
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
902
+
898
   /**
903
   /**
899
    * Enable the G26 Mesh Validation Pattern tool.
904
    * Enable the G26 Mesh Validation Pattern tool.
900
    */
905
    */

+ 5
- 0
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/RigidBot/Configuration.h View File

889
   // The height can be set with M420 Z<height>
889
   // The height can be set with M420 Z<height>
890
   #define ENABLE_LEVELING_FADE_HEIGHT
890
   #define ENABLE_LEVELING_FADE_HEIGHT
891
 
891
 
892
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
893
+  // split up moves into short segments like a Delta.
894
+  #define SEGMENT_LEVELED_MOVES
895
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
896
+
892
   /**
897
   /**
893
    * Enable the G26 Mesh Validation Pattern tool.
898
    * Enable the G26 Mesh Validation Pattern tool.
894
    */
899
    */

+ 5
- 0
Marlin/example_configurations/SCARA/Configuration.h View File

903
   // The height can be set with M420 Z<height>
903
   // The height can be set with M420 Z<height>
904
   #define ENABLE_LEVELING_FADE_HEIGHT
904
   #define ENABLE_LEVELING_FADE_HEIGHT
905
 
905
 
906
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
907
+  // split up moves into short segments like a Delta.
908
+  #define SEGMENT_LEVELED_MOVES
909
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
910
+
906
   /**
911
   /**
907
    * Enable the G26 Mesh Validation Pattern tool.
912
    * Enable the G26 Mesh Validation Pattern tool.
908
    */
913
    */

+ 5
- 0
Marlin/example_configurations/Sanguinololu/Configuration.h View File

922
   // The height can be set with M420 Z<height>
922
   // The height can be set with M420 Z<height>
923
   #define ENABLE_LEVELING_FADE_HEIGHT
923
   #define ENABLE_LEVELING_FADE_HEIGHT
924
 
924
 
925
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
926
+  // split up moves into short segments like a Delta.
927
+  #define SEGMENT_LEVELED_MOVES
928
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
929
+
925
   /**
930
   /**
926
    * Enable the G26 Mesh Validation Pattern tool.
931
    * Enable the G26 Mesh Validation Pattern tool.
927
    */
932
    */

+ 5
- 0
Marlin/example_configurations/TinyBoy2/Configuration.h View File

947
   // The height can be set with M420 Z<height>
947
   // The height can be set with M420 Z<height>
948
   #define ENABLE_LEVELING_FADE_HEIGHT
948
   #define ENABLE_LEVELING_FADE_HEIGHT
949
 
949
 
950
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
951
+  // split up moves into short segments like a Delta.
952
+  #define SEGMENT_LEVELED_MOVES
953
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
954
+
950
   /**
955
   /**
951
    * Enable the G26 Mesh Validation Pattern tool.
956
    * Enable the G26 Mesh Validation Pattern tool.
952
    */
957
    */

+ 5
- 0
Marlin/example_configurations/Velleman/K8200/Configuration.h View File

921
   // The height can be set with M420 Z<height>
921
   // The height can be set with M420 Z<height>
922
   #define ENABLE_LEVELING_FADE_HEIGHT
922
   #define ENABLE_LEVELING_FADE_HEIGHT
923
 
923
 
924
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
925
+  // split up moves into short segments like a Delta.
926
+  #define SEGMENT_LEVELED_MOVES
927
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
928
+
924
   /**
929
   /**
925
    * Enable the G26 Mesh Validation Pattern tool.
930
    * Enable the G26 Mesh Validation Pattern tool.
926
    */
931
    */

+ 5
- 0
Marlin/example_configurations/Velleman/K8400/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/Velleman/K8400/Dual-head/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/adafruit/ST7565/Configuration.h View File

891
   // The height can be set with M420 Z<height>
891
   // The height can be set with M420 Z<height>
892
   #define ENABLE_LEVELING_FADE_HEIGHT
892
   #define ENABLE_LEVELING_FADE_HEIGHT
893
 
893
 
894
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
895
+  // split up moves into short segments like a Delta.
896
+  #define SEGMENT_LEVELED_MOVES
897
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
898
+
894
   /**
899
   /**
895
    * Enable the G26 Mesh Validation Pattern tool.
900
    * Enable the G26 Mesh Validation Pattern tool.
896
    */
901
    */

+ 5
- 0
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h View File

1021
   // The height can be set with M420 Z<height>
1021
   // The height can be set with M420 Z<height>
1022
   //#define ENABLE_LEVELING_FADE_HEIGHT
1022
   //#define ENABLE_LEVELING_FADE_HEIGHT
1023
 
1023
 
1024
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1025
+  // split up moves into short segments like a Delta.
1026
+  #define SEGMENT_LEVELED_MOVES
1027
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1028
+
1024
   /**
1029
   /**
1025
    * Enable the G26 Mesh Validation Pattern tool.
1030
    * Enable the G26 Mesh Validation Pattern tool.
1026
    */
1031
    */

+ 5
- 0
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h View File

1021
   // The height can be set with M420 Z<height>
1021
   // The height can be set with M420 Z<height>
1022
   //#define ENABLE_LEVELING_FADE_HEIGHT
1022
   //#define ENABLE_LEVELING_FADE_HEIGHT
1023
 
1023
 
1024
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1025
+  // split up moves into short segments like a Delta.
1026
+  #define SEGMENT_LEVELED_MOVES
1027
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1028
+
1024
   /**
1029
   /**
1025
    * Enable the G26 Mesh Validation Pattern tool.
1030
    * Enable the G26 Mesh Validation Pattern tool.
1026
    */
1031
    */

+ 5
- 0
Marlin/example_configurations/delta/generic/Configuration.h View File

1012
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1012
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1013
 
1013
 
1014
 
1014
 
1015
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1016
+  // split up moves into short segments like a Delta.
1017
+  #define SEGMENT_LEVELED_MOVES
1018
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1019
+
1015
   /**
1020
   /**
1016
    * Enable the G26 Mesh Validation Pattern tool.
1021
    * Enable the G26 Mesh Validation Pattern tool.
1017
    */
1022
    */

+ 5
- 0
Marlin/example_configurations/delta/kossel_mini/Configuration.h View File

1015
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1015
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1016
 
1016
 
1017
 
1017
 
1018
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1019
+  // split up moves into short segments like a Delta.
1020
+  #define SEGMENT_LEVELED_MOVES
1021
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1022
+
1018
   /**
1023
   /**
1019
    * Enable the G26 Mesh Validation Pattern tool.
1024
    * Enable the G26 Mesh Validation Pattern tool.
1020
    */
1025
    */

+ 5
- 0
Marlin/example_configurations/delta/kossel_pro/Configuration.h View File

1015
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1015
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1016
 
1016
 
1017
 
1017
 
1018
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1019
+  // split up moves into short segments like a Delta.
1020
+  #define SEGMENT_LEVELED_MOVES
1021
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1022
+
1018
   /**
1023
   /**
1019
    * Enable the G26 Mesh Validation Pattern tool.
1024
    * Enable the G26 Mesh Validation Pattern tool.
1020
    */
1025
    */

+ 5
- 0
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

1024
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1024
   #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 10)
1025
 
1025
 
1026
 
1026
 
1027
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
1028
+  // split up moves into short segments like a Delta.
1029
+  #define SEGMENT_LEVELED_MOVES
1030
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
1031
+
1027
   /**
1032
   /**
1028
    * Enable the G26 Mesh Validation Pattern tool.
1033
    * Enable the G26 Mesh Validation Pattern tool.
1029
    */
1034
    */

+ 5
- 0
Marlin/example_configurations/gCreate/gMax1.5+/Configuration.h View File

905
   // The height can be set with M420 Z<height>
905
   // The height can be set with M420 Z<height>
906
   #define ENABLE_LEVELING_FADE_HEIGHT
906
   #define ENABLE_LEVELING_FADE_HEIGHT
907
 
907
 
908
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
909
+  // split up moves into short segments like a Delta.
910
+  #define SEGMENT_LEVELED_MOVES
911
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
912
+
908
   /**
913
   /**
909
    * Enable the G26 Mesh Validation Pattern tool.
914
    * Enable the G26 Mesh Validation Pattern tool.
910
    */
915
    */

+ 5
- 0
Marlin/example_configurations/makibox/Configuration.h View File

894
   // The height can be set with M420 Z<height>
894
   // The height can be set with M420 Z<height>
895
   #define ENABLE_LEVELING_FADE_HEIGHT
895
   #define ENABLE_LEVELING_FADE_HEIGHT
896
 
896
 
897
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
898
+  // split up moves into short segments like a Delta.
899
+  #define SEGMENT_LEVELED_MOVES
900
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
901
+
897
   /**
902
   /**
898
    * Enable the G26 Mesh Validation Pattern tool.
903
    * Enable the G26 Mesh Validation Pattern tool.
899
    */
904
    */

+ 5
- 0
Marlin/example_configurations/tvrrug/Round2/Configuration.h View File

886
   // The height can be set with M420 Z<height>
886
   // The height can be set with M420 Z<height>
887
   #define ENABLE_LEVELING_FADE_HEIGHT
887
   #define ENABLE_LEVELING_FADE_HEIGHT
888
 
888
 
889
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
890
+  // split up moves into short segments like a Delta.
891
+  #define SEGMENT_LEVELED_MOVES
892
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
893
+
889
   /**
894
   /**
890
    * Enable the G26 Mesh Validation Pattern tool.
895
    * Enable the G26 Mesh Validation Pattern tool.
891
    */
896
    */

+ 5
- 0
Marlin/example_configurations/wt150/Configuration.h View File

896
   // The height can be set with M420 Z<height>
896
   // The height can be set with M420 Z<height>
897
   #define ENABLE_LEVELING_FADE_HEIGHT
897
   #define ENABLE_LEVELING_FADE_HEIGHT
898
 
898
 
899
+  // For Cartesian machines, instead of dividing moves on mesh boundaries,
900
+  // split up moves into short segments like a Delta.
901
+  #define SEGMENT_LEVELED_MOVES
902
+  #define LEVELED_SEGMENT_LENGTH 5.0 // (mm) Length of all segments (except the last one)
903
+
899
   /**
904
   /**
900
    * Enable the G26 Mesh Validation Pattern tool.
905
    * Enable the G26 Mesh Validation Pattern tool.
901
    */
906
    */

Loading…
Cancel
Save