Browse Source

Add defaults for basic extrusion to Configuration.h files (#8331)

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

+ 12
- 2
Marlin/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 5
- 10
Marlin/G26_Mesh_Validation_Tool.cpp View File

@@ -38,12 +38,7 @@
38 38
 
39 39
   #define EXTRUSION_MULTIPLIER 1.0
40 40
   #define RETRACTION_MULTIPLIER 1.0
41
-  #define NOZZLE 0.4
42
-  #define FILAMENT 1.75
43
-  #define LAYER_HEIGHT 0.2
44 41
   #define PRIME_LENGTH 10.0
45
-  #define BED_TEMP 60.0
46
-  #define HOTEND_TEMP 205.0
47 42
   #define OOZE_AMOUNT 0.3
48 43
 
49 44
   #define SIZE_OF_INTERSECTION_CIRCLES 5
@@ -624,12 +619,12 @@
624 619
 
625 620
     g26_extrusion_multiplier  = EXTRUSION_MULTIPLIER;
626 621
     g26_retraction_multiplier = RETRACTION_MULTIPLIER;
627
-    g26_nozzle                = NOZZLE;
628
-    g26_filament_diameter     = FILAMENT;
629
-    g26_layer_height          = LAYER_HEIGHT;
622
+    g26_nozzle                = DEFAULT_NOZZLE_SIZE;
623
+    g26_filament_diameter     = DEFAULT_NOMINAL_FILAMENT_DIA;
624
+    g26_layer_height          = DEFAULT_LAYER_HEIGHT;
630 625
     g26_prime_length          = PRIME_LENGTH;
631
-    g26_bed_temp              = BED_TEMP;
632
-    g26_hotend_temp           = HOTEND_TEMP;
626
+    g26_bed_temp              = DEFAULT_BED_TEMP;
627
+    g26_hotend_temp           = DEFAULT_HOTEND_TEMP;
633 628
     g26_prime_flag            = 0;
634 629
 
635 630
     g26_ooze_amount           = parser.linearval('O', OOZE_AMOUNT);

+ 12
- 2
Marlin/example_configurations/AlephObjects/TAZ4/Configuration.h View File

@@ -1709,6 +1709,18 @@
1709 1709
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1710 1710
 
1711 1711
 /**
1712
+ * Default extrusion settings
1713
+ *
1714
+ * These settings control basic extrusion from within the Marlin firmware.
1715
+ * 
1716
+ */
1717
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1718
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1719
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1720
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1721
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1722
+
1723
+/**
1712 1724
  * Filament Width Sensor
1713 1725
  *
1714 1726
  * Measures the filament width in real-time and adjusts
@@ -1728,8 +1740,6 @@
1728 1740
  */
1729 1741
 //#define FILAMENT_WIDTH_SENSOR
1730 1742
 
1731
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1732
-
1733 1743
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1734 1744
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1735 1745
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/AliExpress/CL-260/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Anet/A6/Configuration.h View File

@@ -1848,6 +1848,18 @@
1848 1848
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1849 1849
 
1850 1850
 /**
1851
+ * Default extrusion settings
1852
+ *
1853
+ * These settings control basic extrusion from within the Marlin firmware.
1854
+ * 
1855
+ */
1856
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1857
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1858
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1859
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1860
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1861
+
1862
+/**
1851 1863
  * Filament Width Sensor
1852 1864
  *
1853 1865
  * Measures the filament width in real-time and adjusts
@@ -1867,8 +1879,6 @@
1867 1879
  */
1868 1880
 //#define FILAMENT_WIDTH_SENSOR
1869 1881
 
1870
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1871
-
1872 1882
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1873 1883
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1874 1884
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Anet/A8/Configuration.h View File

@@ -1697,6 +1697,18 @@
1697 1697
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1698 1698
 
1699 1699
 /**
1700
+ * Default extrusion settings
1701
+ *
1702
+ * These settings control basic extrusion from within the Marlin firmware.
1703
+ * 
1704
+ */
1705
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1706
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1707
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1708
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1709
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1710
+
1711
+/**
1700 1712
  * Filament Width Sensor
1701 1713
  *
1702 1714
  * Measures the filament width in real-time and adjusts
@@ -1716,8 +1728,6 @@
1716 1728
  */
1717 1729
 //#define FILAMENT_WIDTH_SENSOR
1718 1730
 
1719
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1720
-
1721 1731
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1722 1732
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1723 1733
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/BQ/Hephestos/Configuration.h View File

@@ -1680,6 +1680,18 @@
1680 1680
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1681 1681
 
1682 1682
 /**
1683
+ * Default extrusion settings
1684
+ *
1685
+ * These settings control basic extrusion from within the Marlin firmware.
1686
+ * 
1687
+ */
1688
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1689
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1690
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1691
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1692
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1693
+
1694
+/**
1683 1695
  * Filament Width Sensor
1684 1696
  *
1685 1697
  * Measures the filament width in real-time and adjusts
@@ -1699,8 +1711,6 @@
1699 1711
  */
1700 1712
 //#define FILAMENT_WIDTH_SENSOR
1701 1713
 
1702
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1703
-
1704 1714
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1705 1715
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1706 1716
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/BQ/Hephestos_2/Configuration.h View File

@@ -1690,6 +1690,18 @@
1690 1690
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1691 1691
 
1692 1692
 /**
1693
+ * Default extrusion settings
1694
+ *
1695
+ * These settings control basic extrusion from within the Marlin firmware.
1696
+ * 
1697
+ */
1698
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1699
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1703
+
1704
+/**
1693 1705
  * Filament Width Sensor
1694 1706
  *
1695 1707
  * Measures the filament width in real-time and adjusts
@@ -1709,8 +1721,6 @@
1709 1721
  */
1710 1722
 //#define FILAMENT_WIDTH_SENSOR
1711 1723
 
1712
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1713
-
1714 1724
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1715 1725
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1716 1726
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/BQ/WITBOX/Configuration.h View File

@@ -1680,6 +1680,18 @@
1680 1680
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1681 1681
 
1682 1682
 /**
1683
+ * Default extrusion settings
1684
+ *
1685
+ * These settings control basic extrusion from within the Marlin firmware.
1686
+ * 
1687
+ */
1688
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1689
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1690
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1691
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1692
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1693
+
1694
+/**
1683 1695
  * Filament Width Sensor
1684 1696
  *
1685 1697
  * Measures the filament width in real-time and adjusts
@@ -1699,8 +1711,6 @@
1699 1711
  */
1700 1712
 //#define FILAMENT_WIDTH_SENSOR
1701 1713
 
1702
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1703
-
1704 1714
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1705 1715
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1706 1716
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Cartesio/Configuration.h View File

@@ -1688,6 +1688,18 @@
1688 1688
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1689 1689
 
1690 1690
 /**
1691
+ * Default extrusion settings
1692
+ *
1693
+ * These settings control basic extrusion from within the Marlin firmware.
1694
+ * 
1695
+ */
1696
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1697
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1698
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+
1702
+/**
1691 1703
  * Filament Width Sensor
1692 1704
  *
1693 1705
  * Measures the filament width in real-time and adjusts
@@ -1707,8 +1719,6 @@
1707 1719
  */
1708 1720
 //#define FILAMENT_WIDTH_SENSOR
1709 1721
 
1710
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1711
-
1712 1722
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1713 1723
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1714 1724
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 1
Marlin/example_configurations/Creality/CR-10/Configuration.h View File

@@ -1699,6 +1699,18 @@
1699 1699
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1700 1700
 
1701 1701
 /**
1702
+ * Default extrusion settings
1703
+ *
1704
+ * These settings control basic extrusion from within the Marlin firmware.
1705
+ * 
1706
+ */
1707
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1708
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1709
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1710
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1711
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1712
+
1713
+/**
1702 1714
  * Filament Width Sensor
1703 1715
  *
1704 1716
  * Measures the filament width in real-time and adjusts
@@ -1718,7 +1730,6 @@
1718 1730
  */
1719 1731
 //#define FILAMENT_WIDTH_SENSOR
1720 1732
 
1721
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1722 1733
 #define DEFAULT_STDDEV_FILAMENT_DIA 0.05    // Typical estimate for cheap filament
1723 1734
 //#define DEFAULT_STDDEV_FILAMENT_DIA 0.02  // Typical advertised for higher quality filament
1724 1735
 

+ 12
- 2
Marlin/example_configurations/Felix/Configuration.h View File

@@ -1671,6 +1671,18 @@
1671 1671
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1672 1672
 
1673 1673
 /**
1674
+ * Default extrusion settings
1675
+ *
1676
+ * These settings control basic extrusion from within the Marlin firmware.
1677
+ * 
1678
+ */
1679
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1680
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1681
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1682
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1683
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1684
+
1685
+/**
1674 1686
  * Filament Width Sensor
1675 1687
  *
1676 1688
  * Measures the filament width in real-time and adjusts
@@ -1690,8 +1702,6 @@
1690 1702
  */
1691 1703
 //#define FILAMENT_WIDTH_SENSOR
1692 1704
 
1693
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1694
-
1695 1705
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1696 1706
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1697 1707
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Felix/DUAL/Configuration.h View File

@@ -1671,6 +1671,18 @@
1671 1671
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1672 1672
 
1673 1673
 /**
1674
+ * Default extrusion settings
1675
+ *
1676
+ * These settings control basic extrusion from within the Marlin firmware.
1677
+ * 
1678
+ */
1679
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1680
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1681
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1682
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1683
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1684
+
1685
+/**
1674 1686
  * Filament Width Sensor
1675 1687
  *
1676 1688
  * Measures the filament width in real-time and adjusts
@@ -1690,8 +1702,6 @@
1690 1702
  */
1691 1703
 //#define FILAMENT_WIDTH_SENSOR
1692 1704
 
1693
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1694
-
1695 1705
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1696 1706
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1697 1707
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/FolgerTech/i3-2020/Configuration.h View File

@@ -1694,6 +1694,18 @@
1694 1694
 #define DEACTIVATE_SERVOS_AFTER_MOVE
1695 1695
 
1696 1696
 /**
1697
+ * Default extrusion settings
1698
+ *
1699
+ * These settings control basic extrusion from within the Marlin firmware.
1700
+ * 
1701
+ */
1702
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1703
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1706
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1707
+
1708
+/**
1697 1709
  * Filament Width Sensor
1698 1710
  *
1699 1711
  * Measures the filament width in real-time and adjusts
@@ -1713,8 +1725,6 @@
1713 1725
  */
1714 1726
 //#define FILAMENT_WIDTH_SENSOR
1715 1727
 
1716
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1717
-
1718 1728
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1719 1729
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1720 1730
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Geeetech/GT2560/Configuration.h View File

@@ -1704,6 +1704,18 @@
1704 1704
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1705 1705
 
1706 1706
 /**
1707
+ * Default extrusion settings
1708
+ *
1709
+ * These settings control basic extrusion from within the Marlin firmware.
1710
+ * 
1711
+ */
1712
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1713
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1714
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1715
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1716
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1717
+
1718
+/**
1707 1719
  * Filament Width Sensor
1708 1720
  *
1709 1721
  * Measures the filament width in real-time and adjusts
@@ -1723,8 +1735,6 @@
1723 1735
  */
1724 1736
 //#define FILAMENT_WIDTH_SENSOR
1725 1737
 
1726
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1727
-
1728 1738
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1729 1739
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1730 1740
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Geeetech/I3_Pro_X-GT2560/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Infitary/i3-M508/Configuration.h View File

@@ -1693,6 +1693,18 @@
1693 1693
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1694 1694
 
1695 1695
 /**
1696
+ * Default extrusion settings
1697
+ *
1698
+ * These settings control basic extrusion from within the Marlin firmware.
1699
+ * 
1700
+ */
1701
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1702
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1703
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1706
+
1707
+/**
1696 1708
  * Filament Width Sensor
1697 1709
  *
1698 1710
  * Measures the filament width in real-time and adjusts
@@ -1712,8 +1724,6 @@
1712 1724
  */
1713 1725
 //#define FILAMENT_WIDTH_SENSOR
1714 1726
 
1715
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1716
-
1717 1727
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1718 1728
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1719 1729
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Malyan/M150/Configuration.h View File

@@ -1717,6 +1717,18 @@
1717 1717
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1718 1718
 
1719 1719
 /**
1720
+ * Default extrusion settings
1721
+ *
1722
+ * These settings control basic extrusion from within the Marlin firmware.
1723
+ * 
1724
+ */
1725
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1726
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1727
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1728
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1729
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1730
+
1731
+/**
1720 1732
  * Filament Width Sensor
1721 1733
  *
1722 1734
  * Measures the filament width in real-time and adjusts
@@ -1736,8 +1748,6 @@
1736 1748
  */
1737 1749
 //#define FILAMENT_WIDTH_SENSOR
1738 1750
 
1739
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1740
-
1741 1751
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1742 1752
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1743 1753
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Micromake/C1/basic/Configuration.h View File

@@ -1693,6 +1693,18 @@
1693 1693
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1694 1694
 
1695 1695
 /**
1696
+ * Default extrusion settings
1697
+ *
1698
+ * These settings control basic extrusion from within the Marlin firmware.
1699
+ * 
1700
+ */
1701
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1702
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1703
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1706
+
1707
+/**
1696 1708
  * Filament Width Sensor
1697 1709
  *
1698 1710
  * Measures the filament width in real-time and adjusts
@@ -1712,8 +1724,6 @@
1712 1724
  */
1713 1725
 //#define FILAMENT_WIDTH_SENSOR
1714 1726
 
1715
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1716
-
1717 1727
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1718 1728
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1719 1729
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Micromake/C1/enhanced/Configuration.h View File

@@ -1693,6 +1693,18 @@
1693 1693
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1694 1694
 
1695 1695
 /**
1696
+ * Default extrusion settings
1697
+ *
1698
+ * These settings control basic extrusion from within the Marlin firmware.
1699
+ * 
1700
+ */
1701
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1702
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1703
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1706
+
1707
+/**
1696 1708
  * Filament Width Sensor
1697 1709
  *
1698 1710
  * Measures the filament width in real-time and adjusts
@@ -1712,8 +1724,6 @@
1712 1724
  */
1713 1725
 //#define FILAMENT_WIDTH_SENSOR
1714 1726
 
1715
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1716
-
1717 1727
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1718 1728
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1719 1729
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/RigidBot/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/SCARA/Configuration.h View File

@@ -1701,6 +1701,18 @@
1701 1701
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1702 1702
 
1703 1703
 /**
1704
+ * Default extrusion settings
1705
+ *
1706
+ * These settings control basic extrusion from within the Marlin firmware.
1707
+ * 
1708
+ */
1709
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1710
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1711
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1712
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1713
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1714
+
1715
+/**
1704 1716
  * Filament Width Sensor
1705 1717
  *
1706 1718
  * Measures the filament width in real-time and adjusts
@@ -1720,8 +1732,6 @@
1720 1732
  */
1721 1733
 //#define FILAMENT_WIDTH_SENSOR
1722 1734
 
1723
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1724
-
1725 1735
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1726 1736
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1727 1737
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Sanguinololu/Configuration.h View File

@@ -1720,6 +1720,18 @@
1720 1720
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1721 1721
 
1722 1722
 /**
1723
+ * Default extrusion settings
1724
+ *
1725
+ * These settings control basic extrusion from within the Marlin firmware.
1726
+ * 
1727
+ */
1728
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1729
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1730
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1731
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1732
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1733
+
1734
+/**
1723 1735
  * Filament Width Sensor
1724 1736
  *
1725 1737
  * Measures the filament width in real-time and adjusts
@@ -1739,8 +1751,6 @@
1739 1751
  */
1740 1752
 //#define FILAMENT_WIDTH_SENSOR
1741 1753
 
1742
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1743
-
1744 1754
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1745 1755
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1746 1756
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/TinyBoy2/Configuration.h View File

@@ -1745,6 +1745,18 @@
1745 1745
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1746 1746
 
1747 1747
 /**
1748
+ * Default extrusion settings
1749
+ *
1750
+ * These settings control basic extrusion from within the Marlin firmware.
1751
+ * 
1752
+ */
1753
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1754
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1755
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1756
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1757
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1758
+
1759
+/**
1748 1760
  * Filament Width Sensor
1749 1761
  *
1750 1762
  * Measures the filament width in real-time and adjusts
@@ -1764,8 +1776,6 @@
1764 1776
  */
1765 1777
 //#define FILAMENT_WIDTH_SENSOR
1766 1778
 
1767
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1768
-
1769 1779
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1770 1780
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1771 1781
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Velleman/K8200/Configuration.h View File

@@ -1719,6 +1719,18 @@
1719 1719
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1720 1720
 
1721 1721
 /**
1722
+ * Default extrusion settings
1723
+ *
1724
+ * These settings control basic extrusion from within the Marlin firmware.
1725
+ * 
1726
+ */
1727
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1728
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1729
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1730
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1731
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1732
+
1733
+/**
1722 1734
  * Filament Width Sensor
1723 1735
  *
1724 1736
  * Measures the filament width in real-time and adjusts
@@ -1738,8 +1750,6 @@
1738 1750
  */
1739 1751
 //#define FILAMENT_WIDTH_SENSOR
1740 1752
 
1741
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1742
-
1743 1753
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1744 1754
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1745 1755
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Velleman/K8400/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/Velleman/K8400/Dual-head/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/adafruit/ST7565/Configuration.h View File

@@ -1689,6 +1689,18 @@
1689 1689
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1690 1690
 
1691 1691
 /**
1692
+ * Default extrusion settings
1693
+ *
1694
+ * These settings control basic extrusion from within the Marlin firmware.
1695
+ * 
1696
+ */
1697
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1698
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1699
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1700
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1701
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1702
+
1703
+/**
1692 1704
  * Filament Width Sensor
1693 1705
  *
1694 1706
  * Measures the filament width in real-time and adjusts
@@ -1708,8 +1720,6 @@
1708 1720
  */
1709 1721
 //#define FILAMENT_WIDTH_SENSOR
1710 1722
 
1711
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
-
1713 1723
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1714 1724
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1715 1725
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h View File

@@ -1823,6 +1823,18 @@
1823 1823
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1824 1824
 
1825 1825
 /**
1826
+ * Default extrusion settings
1827
+ *
1828
+ * These settings control basic extrusion from within the Marlin firmware.
1829
+ * 
1830
+ */
1831
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1832
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1833
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1834
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1835
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1836
+
1837
+/**
1826 1838
  * Filament Width Sensor
1827 1839
  *
1828 1840
  * Measures the filament width in real-time and adjusts
@@ -1842,8 +1854,6 @@
1842 1854
  */
1843 1855
 //#define FILAMENT_WIDTH_SENSOR
1844 1856
 
1845
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1846
-
1847 1857
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1848 1858
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1849 1859
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h View File

@@ -1816,6 +1816,18 @@
1816 1816
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1817 1817
 
1818 1818
 /**
1819
+ * Default extrusion settings
1820
+ *
1821
+ * These settings control basic extrusion from within the Marlin firmware.
1822
+ * 
1823
+ */
1824
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1825
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1826
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1827
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1828
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1829
+
1830
+/**
1819 1831
  * Filament Width Sensor
1820 1832
  *
1821 1833
  * Measures the filament width in real-time and adjusts
@@ -1835,8 +1847,6 @@
1835 1847
  */
1836 1848
 //#define FILAMENT_WIDTH_SENSOR
1837 1849
 
1838
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1839
-
1840 1850
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1841 1851
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1842 1852
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/generic/Configuration.h View File

@@ -1811,6 +1811,18 @@
1811 1811
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1812 1812
 
1813 1813
 /**
1814
+ * Default extrusion settings
1815
+ *
1816
+ * These settings control basic extrusion from within the Marlin firmware.
1817
+ * 
1818
+ */
1819
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1820
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1821
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1822
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1823
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1824
+
1825
+/**
1814 1826
  * Filament Width Sensor
1815 1827
  *
1816 1828
  * Measures the filament width in real-time and adjusts
@@ -1830,8 +1842,6 @@
1830 1842
  */
1831 1843
 //#define FILAMENT_WIDTH_SENSOR
1832 1844
 
1833
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1834
-
1835 1845
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1836 1846
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1837 1847
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/kossel_mini/Configuration.h View File

@@ -1814,6 +1814,18 @@
1814 1814
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1815 1815
 
1816 1816
 /**
1817
+ * Default extrusion settings
1818
+ *
1819
+ * These settings control basic extrusion from within the Marlin firmware.
1820
+ * 
1821
+ */
1822
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1823
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1824
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1825
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1826
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1827
+
1828
+/**
1817 1829
  * Filament Width Sensor
1818 1830
  *
1819 1831
  * Measures the filament width in real-time and adjusts
@@ -1833,8 +1845,6 @@
1833 1845
  */
1834 1846
 //#define FILAMENT_WIDTH_SENSOR
1835 1847
 
1836
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1837
-
1838 1848
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1839 1849
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1840 1850
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/kossel_pro/Configuration.h View File

@@ -1814,6 +1814,18 @@
1814 1814
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1815 1815
 
1816 1816
 /**
1817
+ * Default extrusion settings
1818
+ *
1819
+ * These settings control basic extrusion from within the Marlin firmware.
1820
+ * 
1821
+ */
1822
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1823
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1824
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1825
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1826
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1827
+
1828
+/**
1817 1829
  * Filament Width Sensor
1818 1830
  *
1819 1831
  * Measures the filament width in real-time and adjusts
@@ -1833,8 +1845,6 @@
1833 1845
  */
1834 1846
 //#define FILAMENT_WIDTH_SENSOR
1835 1847
 
1836
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1837
-
1838 1848
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1839 1849
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1840 1850
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

@@ -1823,6 +1823,18 @@
1823 1823
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1824 1824
 
1825 1825
 /**
1826
+ * Default extrusion settings
1827
+ *
1828
+ * These settings control basic extrusion from within the Marlin firmware.
1829
+ * 
1830
+ */
1831
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1832
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1833
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1834
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1835
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1836
+
1837
+/**
1826 1838
  * Filament Width Sensor
1827 1839
  *
1828 1840
  * Measures the filament width in real-time and adjusts
@@ -1842,8 +1854,6 @@
1842 1854
  */
1843 1855
 //#define FILAMENT_WIDTH_SENSOR
1844 1856
 
1845
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1846
-
1847 1857
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1848 1858
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1849 1859
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

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

@@ -1703,6 +1703,18 @@
1703 1703
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1704 1704
 
1705 1705
 /**
1706
+ * Default extrusion settings
1707
+ *
1708
+ * These settings control basic extrusion from within the Marlin firmware.
1709
+ * 
1710
+ */
1711
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1712
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1713
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1714
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1715
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1716
+
1717
+/**
1706 1718
  * Filament Width Sensor
1707 1719
  *
1708 1720
  * Measures the filament width in real-time and adjusts
@@ -1722,8 +1734,6 @@
1722 1734
  */
1723 1735
 //#define FILAMENT_WIDTH_SENSOR
1724 1736
 
1725
-#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1726
-
1727 1737
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1728 1738
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1729 1739
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/makibox/Configuration.h View File

@@ -1692,6 +1692,18 @@
1692 1692
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1693 1693
 
1694 1694
 /**
1695
+ * Default extrusion settings
1696
+ *
1697
+ * These settings control basic extrusion from within the Marlin firmware.
1698
+ * 
1699
+ */
1700
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1701
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1702
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1703
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+
1706
+/**
1695 1707
  * Filament Width Sensor
1696 1708
  *
1697 1709
  * Measures the filament width in real-time and adjusts
@@ -1711,8 +1723,6 @@
1711 1723
  */
1712 1724
 //#define FILAMENT_WIDTH_SENSOR
1713 1725
 
1714
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1715
-
1716 1726
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1717 1727
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1718 1728
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/tvrrug/Round2/Configuration.h View File

@@ -1684,6 +1684,18 @@
1684 1684
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1685 1685
 
1686 1686
 /**
1687
+ * Default extrusion settings
1688
+ *
1689
+ * These settings control basic extrusion from within the Marlin firmware.
1690
+ * 
1691
+ */
1692
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1693
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1694
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1695
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1696
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1697
+
1698
+/**
1687 1699
  * Filament Width Sensor
1688 1700
  *
1689 1701
  * Measures the filament width in real-time and adjusts
@@ -1703,8 +1715,6 @@
1703 1715
  */
1704 1716
 //#define FILAMENT_WIDTH_SENSOR
1705 1717
 
1706
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1707
-
1708 1718
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1709 1719
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1710 1720
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

+ 12
- 2
Marlin/example_configurations/wt150/Configuration.h View File

@@ -1694,6 +1694,18 @@
1694 1694
 //#define DEACTIVATE_SERVOS_AFTER_MOVE
1695 1695
 
1696 1696
 /**
1697
+ * Default extrusion settings
1698
+ *
1699
+ * These settings control basic extrusion from within the Marlin firmware.
1700
+ * 
1701
+ */
1702
+#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1703
+#define DEFAULT_NOZZLE_SIZE           .4    // (mm) Diameter of primary nozzle.  Used by G26 Mesh Validation Pattern tool.
1704
+#define DEFAULT_LAYER_HEIGHT          .2    // (mm) Default layer height that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1705
+#define DEFAULT_HOTEND_TEMP        205.0    // (c)  Default nozzle temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1706
+#define DEFAULT_BED_TEMP            60.0    // (c)  Default bed temperature that will produce usable results by the printer.  Used by G26 Mesh Validation Pattern tool.
1707
+
1708
+/**
1697 1709
  * Filament Width Sensor
1698 1710
  *
1699 1711
  * Measures the filament width in real-time and adjusts
@@ -1713,8 +1725,6 @@
1713 1725
  */
1714 1726
 //#define FILAMENT_WIDTH_SENSOR
1715 1727
 
1716
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.00   // (mm) Diameter of the filament generally used (3.0 or 1.75mm), also used in the slicer. Used to validate sensor reading.
1717
-
1718 1728
 #if ENABLED(FILAMENT_WIDTH_SENSOR)
1719 1729
   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor (0,1,2,3)
1720 1730
   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber

Loading…
Cancel
Save