瀏覽代碼

Clean up some endstop inverting examples

Scott Lahteine 6 年之前
父節點
當前提交
ed8d2bc225
共有 25 個文件被更改,包括 82 次插入82 次删除
  1. 1
    1
      Marlin/src/config/examples/AlephObjects/TAZ4/Configuration.h
  2. 6
    6
      Marlin/src/config/examples/AliExpress/CL-260/Configuration.h
  3. 3
    3
      Marlin/src/config/examples/Anet/A6/Configuration.h
  4. 1
    1
      Marlin/src/config/examples/Cartesio/Configuration.h
  5. 7
    7
      Marlin/src/config/examples/Infitary/i3-M508/Configuration.h
  6. 3
    3
      Marlin/src/config/examples/JGAurora/A5/Configuration.h
  7. 7
    7
      Marlin/src/config/examples/MakerParts/Configuration.h
  8. 7
    7
      Marlin/src/config/examples/Malyan/M150/Configuration.h
  9. 3
    3
      Marlin/src/config/examples/Malyan/M200/Configuration.h
  10. 2
    2
      Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h
  11. 2
    2
      Marlin/src/config/examples/Mks/Sbase/Configuration.h
  12. 1
    1
      Marlin/src/config/examples/RepRapWorld/Megatronics/Configuration.h
  13. 1
    1
      Marlin/src/config/examples/RigidBot/Configuration.h
  14. 1
    1
      Marlin/src/config/examples/SCARA/Configuration.h
  15. 3
    3
      Marlin/src/config/examples/STM32F10/Configuration.h
  16. 7
    7
      Marlin/src/config/examples/TheBorg/Configuration.h
  17. 3
    3
      Marlin/src/config/examples/TinyBoy2/Configuration.h
  18. 3
    3
      Marlin/src/config/examples/Tronxy/X1/Configuration.h
  19. 7
    7
      Marlin/src/config/examples/Tronxy/X5S/Configuration.h
  20. 3
    3
      Marlin/src/config/examples/Tronxy/XY100/Configuration.h
  21. 3
    3
      Marlin/src/config/examples/Wanhao/Duplicator 6/Configuration.h
  22. 1
    1
      Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h
  23. 1
    1
      Marlin/src/config/examples/delta/FLSUN/kossel/Configuration.h
  24. 3
    3
      Marlin/src/config/examples/stm32f103ret6/Configuration.h
  25. 3
    3
      Marlin/src/config/examples/wt150/Configuration.h

+ 1
- 1
Marlin/src/config/examples/AlephObjects/TAZ4/Configuration.h 查看文件

562
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
562
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
563
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
563
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
564
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
564
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
565
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
565
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
566
 
566
 
567
 // Enable this feature if all enabled endstop pins are interrupt-capable.
567
 // Enable this feature if all enabled endstop pins are interrupt-capable.
568
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
568
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 6
- 6
Marlin/src/config/examples/AliExpress/CL-260/Configuration.h 查看文件

536
 #endif
536
 #endif
537
 
537
 
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
540
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
542
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
543
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
539
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
543
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
545
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.

+ 3
- 3
Marlin/src/config/examples/Anet/A6/Configuration.h 查看文件

556
 #endif
556
 #endif
557
 
557
 
558
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
558
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
559
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
560
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
561
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
559
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
560
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
561
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
562
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
562
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
563
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
563
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
564
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
564
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 1
- 1
Marlin/src/config/examples/Cartesio/Configuration.h 查看文件

541
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
544
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
545
 
545
 
546
 // Enable this feature if all enabled endstop pins are interrupt-capable.
546
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
547
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 7
- 7
Marlin/src/config/examples/Infitary/i3-M508/Configuration.h 查看文件

540
 #endif
540
 #endif
541
 
541
 
542
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
542
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
543
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
546
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
547
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
548
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
549
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
543
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
546
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
547
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
548
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
549
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
550
 
550
 
551
 // Enable this feature if all enabled endstop pins are interrupt-capable.
551
 // Enable this feature if all enabled endstop pins are interrupt-capable.
552
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
552
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/JGAurora/A5/Configuration.h 查看文件

548
 #endif
548
 #endif
549
 
549
 
550
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
550
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
551
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
552
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
553
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
551
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
552
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
553
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
554
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
554
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
555
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
555
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
556
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
556
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 7
- 7
Marlin/src/config/examples/MakerParts/Configuration.h 查看文件

556
 #endif
556
 #endif
557
 
557
 
558
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
558
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
559
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
560
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
561
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
562
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
563
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
564
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
565
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
559
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
560
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
561
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
562
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
563
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
564
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
565
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
566
 
566
 
567
 // Enable this feature if all enabled endstop pins are interrupt-capable.
567
 // Enable this feature if all enabled endstop pins are interrupt-capable.
568
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
568
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 7
- 7
Marlin/src/config/examples/Malyan/M150/Configuration.h 查看文件

545
 
545
 
546
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
546
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
547
 
547
 
548
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
549
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
550
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
551
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
552
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
553
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
554
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
548
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
549
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
550
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
551
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
552
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
553
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
554
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
555
 
555
 
556
 // Enable this feature if all enabled endstop pins are interrupt-capable.
556
 // Enable this feature if all enabled endstop pins are interrupt-capable.
557
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
557
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/Malyan/M200/Configuration.h 查看文件

535
 #endif
535
 #endif
536
 
536
 
537
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
537
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
539
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
540
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
538
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
539
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 2
- 2
Marlin/src/config/examples/Micromake/C1/enhanced/Configuration.h 查看文件

538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
539
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
540
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
540
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
545
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
545
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 2
- 2
Marlin/src/config/examples/Mks/Sbase/Configuration.h 查看文件

538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
539
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
540
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
540
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
545
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
545
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 1
- 1
Marlin/src/config/examples/RepRapWorld/Megatronics/Configuration.h 查看文件

542
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
545
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 1
- 1
Marlin/src/config/examples/RigidBot/Configuration.h 查看文件

538
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
538
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
539
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
539
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
541
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
542
 
542
 
543
 // Enable this feature if all enabled endstop pins are interrupt-capable.
543
 // Enable this feature if all enabled endstop pins are interrupt-capable.
544
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
544
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 1
- 1
Marlin/src/config/examples/SCARA/Configuration.h 查看文件

555
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
555
 #define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
556
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
556
 #define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
557
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
557
 #define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
558
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
558
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
559
 
559
 
560
 // Enable this feature if all enabled endstop pins are interrupt-capable.
560
 // Enable this feature if all enabled endstop pins are interrupt-capable.
561
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
561
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/STM32F10/Configuration.h 查看文件

541
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
546
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
546
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
547
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
547
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
548
 
548
 
549
 // Enable this feature if all enabled endstop pins are interrupt-capable.
549
 // Enable this feature if all enabled endstop pins are interrupt-capable.

+ 7
- 7
Marlin/src/config/examples/TheBorg/Configuration.h 查看文件

536
 #endif
536
 #endif
537
 
537
 
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
540
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
542
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
543
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
539
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
543
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/TinyBoy2/Configuration.h 查看文件

588
 
588
 
589
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
589
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
590
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
590
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
591
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
592
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
593
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
591
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
592
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
593
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
594
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
594
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
595
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
595
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
596
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
596
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.

+ 3
- 3
Marlin/src/config/examples/Tronxy/X1/Configuration.h 查看文件

536
 #endif
536
 #endif
537
 
537
 
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
540
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
539
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 7
- 7
Marlin/src/config/examples/Tronxy/X5S/Configuration.h 查看文件

536
 #endif
536
 #endif
537
 
537
 
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
538
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
539
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
540
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
541
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
542
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
543
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
539
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
540
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
541
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
542
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
543
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
544
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
546
 
546
 
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
547
 // Enable this feature if all enabled endstop pins are interrupt-capable.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
548
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/Tronxy/XY100/Configuration.h 查看文件

547
 #endif
547
 #endif
548
 
548
 
549
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
549
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
550
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
551
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
552
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
550
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
551
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
552
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
553
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
553
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
554
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
554
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
555
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
555
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 3
- 3
Marlin/src/config/examples/Wanhao/Duplicator 6/Configuration.h 查看文件

546
 #endif
546
 #endif
547
 
547
 
548
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
548
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
549
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
550
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
551
-#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
549
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
550
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
551
+#define Z_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
552
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
552
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
553
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
553
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
554
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
554
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.

+ 1
- 1
Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration.h 查看文件

615
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
615
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
616
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
616
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
617
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
617
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
618
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
618
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
619
 
619
 
620
 // Enable this feature if all enabled endstop pins are interrupt-capable.
620
 // Enable this feature if all enabled endstop pins are interrupt-capable.
621
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
621
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 1
- 1
Marlin/src/config/examples/delta/FLSUN/kossel/Configuration.h 查看文件

615
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
615
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
616
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
616
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
617
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
617
 #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
618
-#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
618
+#define Z_MIN_PROBE_ENDSTOP_INVERTING true  // set to true to invert the logic of the probe.
619
 
619
 
620
 // Enable this feature if all enabled endstop pins are interrupt-capable.
620
 // Enable this feature if all enabled endstop pins are interrupt-capable.
621
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.
621
 // This will remove the need to poll the interrupt pins, saving many CPU cycles.

+ 3
- 3
Marlin/src/config/examples/stm32f103ret6/Configuration.h 查看文件

541
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
541
 #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
542
 #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
543
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
544
-#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
546
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
+#define X_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Y_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
546
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
547
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
547
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
548
 
548
 
549
 // Enable this feature if all enabled endstop pins are interrupt-capable.
549
 // Enable this feature if all enabled endstop pins are interrupt-capable.

+ 3
- 3
Marlin/src/config/examples/wt150/Configuration.h 查看文件

541
 #endif
541
 #endif
542
 
542
 
543
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
543
 // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
544
-#define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
545
-#define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
544
+#define X_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
545
+#define Y_MIN_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
546
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
546
 #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
547
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
547
 #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
548
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
548
 #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
549
-#define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
549
+#define Z_MAX_ENDSTOP_INVERTING true  // set to true to invert the logic of the endstop.
550
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
550
 #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
551
 
551
 
552
 // Enable this feature if all enabled endstop pins are interrupt-capable.
552
 // Enable this feature if all enabled endstop pins are interrupt-capable.

Loading…
取消
儲存