Bläddra i källkod

Bring configs up to date

Scott Lahteine 6 år sedan
förälder
incheckning
77c2d810f9
24 ändrade filer med 52 tillägg och 36 borttagningar
  1. 0
    0
      Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h
  2. 3
    3
      Marlin/src/config/examples/Creality/CR-10S/Configuration.h
  3. 1
    1
      Marlin/src/config/examples/Creality/CR-10S/Configuration_adv.h
  4. 2
    2
      Marlin/src/config/examples/FolgerTech/i3-2020/Configuration.h
  5. 2
    2
      Marlin/src/config/examples/Micromake/C1/basic/Configuration.h
  6. 2
    2
      Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h
  7. 0
    1
      Marlin/src/config/examples/Micromake/C1/enhanced/Configuration_adv.h
  8. 11
    0
      Marlin/src/config/examples/Sanguinololu/Configuration_adv.h
  9. 2
    2
      Marlin/src/config/examples/Tronxy/X1/Configuration.h
  10. 6
    4
      Marlin/src/config/examples/Velleman/K8200/Configuration_adv.h
  11. 3
    3
      Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h
  12. 6
    1
      Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration.h
  13. 1
    1
      Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h
  14. 1
    1
      Marlin/src/config/examples/delta/generic/Configuration.h
  15. 1
    1
      Marlin/src/config/examples/delta/generic/Configuration_adv.h
  16. 1
    1
      Marlin/src/config/examples/delta/kossel_mini/Configuration.h
  17. 1
    1
      Marlin/src/config/examples/delta/kossel_mini/Configuration_adv.h
  18. 1
    1
      Marlin/src/config/examples/delta/kossel_pro/Configuration.h
  19. 1
    1
      Marlin/src/config/examples/delta/kossel_pro/Configuration_adv.h
  20. 3
    3
      Marlin/src/config/examples/delta/kossel_xl/Configuration.h
  21. 1
    1
      Marlin/src/config/examples/delta/kossel_xl/Configuration_adv.h
  22. 2
    2
      Marlin/src/config/examples/gCreate/gMax1.5+/Configuration.h
  23. 0
    1
      Marlin/src/config/examples/gCreate/gMax1.5+/Configuration_adv.h
  24. 1
    1
      Marlin/src/config/examples/wt150/Configuration.h

+ 0
- 0
Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h Visa fil


+ 3
- 3
Marlin/src/config/examples/Creality/CR-10S/Configuration.h Visa fil

@@ -37,7 +37,7 @@
37 37
  */
38 38
 #ifndef CONFIGURATION_H
39 39
 #define CONFIGURATION_H
40
-#define CONFIGURATION_H_VERSION 010107
40
+#define CONFIGURATION_H_VERSION 020000
41 41
 
42 42
 //===========================================================================
43 43
 //============================= Getting Started =============================
@@ -59,14 +59,14 @@
59 59
 //============================= DELTA Printer ===============================
60 60
 //===========================================================================
61 61
 // For a Delta printer start with one of the configuration files in the
62
-// example_configurations/delta directory and customize for your machine.
62
+// config/examples/delta directory and customize for your machine.
63 63
 //
64 64
 
65 65
 //===========================================================================
66 66
 //============================= SCARA Printer ===============================
67 67
 //===========================================================================
68 68
 // For a SCARA printer start with the configuration files in
69
-// example_configurations/SCARA and customize for your machine.
69
+// config/examples/SCARA and customize for your machine.
70 70
 //
71 71
 
72 72
 // @section info

+ 1
- 1
Marlin/src/config/examples/Creality/CR-10S/Configuration_adv.h Visa fil

@@ -32,7 +32,7 @@
32 32
  */
33 33
 #ifndef CONFIGURATION_ADV_H
34 34
 #define CONFIGURATION_ADV_H
35
-#define CONFIGURATION_ADV_H_VERSION 010107
35
+#define CONFIGURATION_ADV_H_VERSION 020000
36 36
 
37 37
 // @section temperature
38 38
 

+ 2
- 2
Marlin/src/config/examples/FolgerTech/i3-2020/Configuration.h Visa fil

@@ -815,7 +815,7 @@
815 815
  * - Use 'M211' to set software endstops on/off or report current state
816 816
  */
817 817
 
818
-// If enabled, axes won't move below MIN_POS in response to movement commands.
818
+// Min software endstops constrain movement within minimum coordinate bounds
819 819
 //#define MIN_SOFTWARE_ENDSTOPS
820 820
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
821 821
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -823,7 +823,7 @@
823 823
   #define MIN_SOFTWARE_ENDSTOP_Z
824 824
 #endif
825 825
 
826
-// If enabled, axes won't move above MAX_POS in response to movement commands.
826
+// Max software endstops constrain movement within maximum coordinate bounds
827 827
 #define MAX_SOFTWARE_ENDSTOPS
828 828
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
829 829
   #define MAX_SOFTWARE_ENDSTOP_X

+ 2
- 2
Marlin/src/config/examples/Micromake/C1/basic/Configuration.h Visa fil

@@ -813,7 +813,7 @@
813 813
  * - Use 'M211' to set software endstops on/off or report current state
814 814
  */
815 815
 
816
-// Min software endstops curtail movement below minimum coordinate bounds
816
+// Min software endstops constrain movement within minimum coordinate bounds
817 817
 #define MIN_SOFTWARE_ENDSTOPS
818 818
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
819 819
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -821,7 +821,7 @@
821 821
   #define MIN_SOFTWARE_ENDSTOP_Z
822 822
 #endif
823 823
 
824
-// Max software endstops curtail movement above maximum coordinate bounds
824
+// Max software endstops constrain movement within maximum coordinate bounds
825 825
 #define MAX_SOFTWARE_ENDSTOPS
826 826
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
827 827
   #define MAX_SOFTWARE_ENDSTOP_X

+ 2
- 2
Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h Visa fil

@@ -813,7 +813,7 @@
813 813
  * - Use 'M211' to set software endstops on/off or report current state
814 814
  */
815 815
 
816
-// Min software endstops curtail movement below minimum coordinate bounds
816
+// Min software endstops constrain movement within minimum coordinate bounds
817 817
 #define MIN_SOFTWARE_ENDSTOPS
818 818
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
819 819
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -821,7 +821,7 @@
821 821
   #define MIN_SOFTWARE_ENDSTOP_Z
822 822
 #endif
823 823
 
824
-// Max software endstops curtail movement above maximum coordinate bounds
824
+// Max software endstops constrain movement within maximum coordinate bounds
825 825
 #define MAX_SOFTWARE_ENDSTOPS
826 826
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
827 827
   #define MAX_SOFTWARE_ENDSTOP_X

+ 0
- 1
Marlin/src/config/examples/Micromake/C1/enhanced/Configuration_adv.h Visa fil

@@ -512,7 +512,6 @@
512 512
   #define SD_DETECT_INVERTED
513 513
 
514 514
   #define SD_FINISHED_STEPPERRELEASE true          // Disable steppers when SD Print is finished
515
-
516 515
   #define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
517 516
 
518 517
   // Reverse SD sort to show "more recent" files first, according to the card's FAT.

+ 11
- 0
Marlin/src/config/examples/Sanguinololu/Configuration_adv.h Visa fil

@@ -223,6 +223,17 @@
223 223
 #define EXTRUDER_AUTO_FAN_SPEED   255  // == full speed
224 224
 
225 225
 /**
226
+ * Part-Cooling Fan Multiplexer
227
+ *
228
+ * This feature allows you to digitally multiplex the fan output.
229
+ * The multiplexer is automatically switched at tool-change.
230
+ * Set FANMUX[012]_PINs below for up to 2, 4, or 8 multiplexed fans.
231
+ */
232
+#define FANMUX0_PIN -1
233
+#define FANMUX1_PIN -1
234
+#define FANMUX2_PIN -1
235
+
236
+/**
226 237
  * M355 Case Light on-off / brightness
227 238
  */
228 239
 //#define CASE_LIGHT_ENABLE

+ 2
- 2
Marlin/src/config/examples/Tronxy/X1/Configuration.h Visa fil

@@ -800,7 +800,7 @@
800 800
  * - Use 'M211' to set software endstops on/off or report current state
801 801
  */
802 802
 
803
-// Min software endstops curtail movement below minimum coordinate bounds
803
+// Min software endstops constrain movement within minimum coordinate bounds
804 804
 #define MIN_SOFTWARE_ENDSTOPS
805 805
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
806 806
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -808,7 +808,7 @@
808 808
   #define MIN_SOFTWARE_ENDSTOP_Z
809 809
 #endif
810 810
 
811
-// Max software endstops curtail movement above maximum coordinate bounds
811
+// Max software endstops constrain movement within maximum coordinate bounds
812 812
 #define MAX_SOFTWARE_ENDSTOPS
813 813
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
814 814
   #define MAX_SOFTWARE_ENDSTOP_X

+ 6
- 4
Marlin/src/config/examples/Velleman/K8200/Configuration_adv.h Visa fil

@@ -527,10 +527,12 @@
527 527
   #define SD_FINISHED_STEPPERRELEASE true          // Disable steppers when SD Print is finished
528 528
   #define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
529 529
 
530
-  #define SDCARD_RATHERRECENTFIRST  //reverse file order of sd card menu display. Its sorted practically after the file system block order.
531
-  // if a file is deleted, it frees a block. hence, the order is not purely chronological. To still have auto0.g accessible, there is again the option to do that.
532
-  // using:
533
-  #define MENU_ADDAUTOSTART
530
+  // Reverse SD sort to show "more recent" files first, according to the card's FAT.
531
+  // Since the FAT gets out of order with usage, SDCARD_SORT_ALPHA is recommended.
532
+  #define SDCARD_RATHERRECENTFIRST
533
+
534
+  // Add an option in the menu to run all auto#.g files
535
+  //#define MENU_ADDAUTOSTART
534 536
 
535 537
   /**
536 538
    * Sort SD file listings in alphabetical order.

+ 3
- 3
Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *
@@ -939,7 +939,7 @@
939 939
  * - Use 'M211' to set software endstops on/off or report current state
940 940
  */
941 941
 
942
-// Min software endstops curtail movement below minimum coordinate bounds
942
+// Min software endstops constrain movement within minimum coordinate bounds
943 943
 //#define MIN_SOFTWARE_ENDSTOPS
944 944
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
945 945
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -947,7 +947,7 @@
947 947
   #define MIN_SOFTWARE_ENDSTOP_Z
948 948
 #endif
949 949
 
950
-// Max software endstops curtail movement above maximum coordinate bounds
950
+// Max software endstops constrain movement within maximum coordinate bounds
951 951
 #define MAX_SOFTWARE_ENDSTOPS
952 952
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
953 953
   #define MAX_SOFTWARE_ENDSTOP_X

+ 6
- 1
Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *
@@ -1066,6 +1066,11 @@
1066 1066
   //#define PROBE_Y_FIRST
1067 1067
 
1068 1068
   #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
1069
+
1070
+    // Beyond the probed grid, continue the implied tilt?
1071
+    // Default is to maintain the height of the nearest edge.
1072
+    //#define EXTRAPOLATE_BEYOND_GRID
1073
+
1069 1074
     //
1070 1075
     // Experimental Subdivision of the grid by Catmull-Rom method.
1071 1076
     // Synthesizes intermediate points to produce a more detailed mesh.

+ 1
- 1
Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/generic/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/generic/Configuration_adv.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/kossel_mini/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/kossel_mini/Configuration_adv.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/kossel_pro/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 1
- 1
Marlin/src/config/examples/delta/kossel_pro/Configuration_adv.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 3
- 3
Marlin/src/config/examples/delta/kossel_xl/Configuration.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *
@@ -938,7 +938,7 @@
938 938
  * - Use 'M211' to set software endstops on/off or report current state
939 939
  */
940 940
 
941
-// Min software endstops curtail movement below minimum coordinate bounds
941
+// Min software endstops constrain movement within minimum coordinate bounds
942 942
 //#define MIN_SOFTWARE_ENDSTOPS
943 943
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
944 944
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -946,7 +946,7 @@
946 946
   #define MIN_SOFTWARE_ENDSTOP_Z
947 947
 #endif
948 948
 
949
-// Max software endstops curtail movement above maximum coordinate bounds
949
+// Max software endstops constrain movement within maximum coordinate bounds
950 950
 #define MAX_SOFTWARE_ENDSTOPS
951 951
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
952 952
   #define MAX_SOFTWARE_ENDSTOP_X

+ 1
- 1
Marlin/src/config/examples/delta/kossel_xl/Configuration_adv.h Visa fil

@@ -1,4 +1,4 @@
1
-/**
1
+/**
2 2
  * Marlin 3D Printer Firmware
3 3
  * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4 4
  *

+ 2
- 2
Marlin/src/config/examples/gCreate/gMax1.5+/Configuration.h Visa fil

@@ -823,7 +823,7 @@
823 823
  * - Use 'M211' to set software endstops on/off or report current state
824 824
  */
825 825
 
826
-// Min software endstops curtail movement below minimum coordinate bounds
826
+// Min software endstops constrain movement within minimum coordinate bounds
827 827
 //#define MIN_SOFTWARE_ENDSTOPS
828 828
 #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
829 829
   #define MIN_SOFTWARE_ENDSTOP_X
@@ -831,7 +831,7 @@
831 831
   #define MIN_SOFTWARE_ENDSTOP_Z
832 832
 #endif
833 833
 
834
-// Max software endstops curtail movement above maximum coordinate bounds
834
+// Max software endstops constrain movement within maximum coordinate bounds
835 835
 #define MAX_SOFTWARE_ENDSTOPS
836 836
 #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
837 837
   #define MAX_SOFTWARE_ENDSTOP_X

+ 0
- 1
Marlin/src/config/examples/gCreate/gMax1.5+/Configuration_adv.h Visa fil

@@ -1559,7 +1559,6 @@
1559 1559
  * Fully assembled MAX7219 boards can be found on the internet for under $2(US).
1560 1560
  * For example, see https://www.ebay.com/sch/i.html?_nkw=332349290049
1561 1561
  */
1562
-
1563 1562
 #define MAX7219_DEBUG
1564 1563
 #if ENABLED(MAX7219_DEBUG)
1565 1564
   #define MAX7219_CLK_PIN   64  // 77 on Re-ARM       // Configuration of the 3 pins to control the display

+ 1
- 1
Marlin/src/config/examples/wt150/Configuration.h Visa fil

@@ -766,7 +766,7 @@
766 766
 #define INVERT_Y_DIR false
767 767
 #define INVERT_Z_DIR false
768 768
 
769
-// Enable this option for Toshiba steppers
769
+// Enable this option for Toshiba stepper drivers
770 770
 //#define CONFIG_STEPPERS_TOSHIBA
771 771
 
772 772
 // @section extruder

Laddar…
Avbryt
Spara