Pārlūkot izejas kodu

Merge pull request #8589 from fiveangle/bf11_babystepping_travis_options

[1.1.x] Additional Travis BABYSTEPPING tests
Scott Lahteine 6 gadus atpakaļ
vecāks
revīzija
b781f76711
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam
32 mainītis faili ar 65 papildinājumiem un 65 dzēšanām
  1. 2
    2
      .travis.yml
  2. 2
    2
      Marlin/Configuration_adv.h
  3. 3
    3
      Marlin/Marlin_main.cpp
  4. 2
    2
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h
  5. 2
    2
      Marlin/example_configurations/Anet/A6/Configuration_adv.h
  6. 2
    2
      Marlin/example_configurations/Anet/A8/Configuration_adv.h
  7. 2
    2
      Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h
  8. 2
    2
      Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h
  9. 2
    2
      Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h
  10. 2
    2
      Marlin/example_configurations/Cartesio/Configuration_adv.h
  11. 2
    2
      Marlin/example_configurations/Creality/CR-10/Configuration_adv.h
  12. 2
    2
      Marlin/example_configurations/Felix/Configuration_adv.h
  13. 2
    2
      Marlin/example_configurations/FolgerTech/i3-2020/Configuration_adv.h
  14. 2
    2
      Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h
  15. 2
    2
      Marlin/example_configurations/Malyan/M150/Configuration_adv.h
  16. 2
    2
      Marlin/example_configurations/Micromake/C1/enhanced/Configuration_adv.h
  17. 2
    2
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  18. 2
    2
      Marlin/example_configurations/SCARA/Configuration_adv.h
  19. 2
    2
      Marlin/example_configurations/Sanguinololu/Configuration_adv.h
  20. 2
    2
      Marlin/example_configurations/TinyBoy2/Configuration_adv.h
  21. 2
    2
      Marlin/example_configurations/Velleman/K8200/Configuration_adv.h
  22. 2
    2
      Marlin/example_configurations/Velleman/K8400/Configuration_adv.h
  23. 2
    2
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h
  24. 2
    2
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h
  25. 2
    2
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  26. 2
    2
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  27. 2
    2
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  28. 2
    2
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  29. 2
    2
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h
  30. 2
    2
      Marlin/example_configurations/makibox/Configuration_adv.h
  31. 2
    2
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
  32. 2
    2
      Marlin/example_configurations/wt150/Configuration_adv.h

+ 2
- 2
.travis.yml Parādīt failu

@@ -100,12 +100,12 @@ script:
100 100
   #
101 101
   - restore_configs
102 102
   - opt_enable AUTO_BED_LEVELING_UBL DEBUG_LEVELING_FEATURE G26_MESH_EDITING ENABLE_LEVELING_FADE_HEIGHT EEPROM_SETTINGS EEPROM_CHITCHAT G3D_PANEL
103
-  - opt_enable_adv CUSTOM_USER_MENUS I2C_POSITION_ENCODERS BABYSTEPPING NANODLP_Z_SYNC
103
+  - opt_enable_adv CUSTOM_USER_MENUS I2C_POSITION_ENCODERS BABYSTEPPING BABYSTEP_ZPROBE_OFFSET DOUBLECLICK_FOR_Z_BABYSTEPPING NANODLP_Z_SYNC
104 104
   - build_marlin
105 105
   #
106 106
   # And with a Sled Z Probe
107 107
   #
108
-  - opt_enable Z_PROBE_SLED 
108
+  - opt_enable Z_PROBE_SLED
109 109
   - build_marlin
110 110
   #
111 111
   # Test a Servo Probe

+ 2
- 2
Marlin/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 3
- 3
Marlin/Marlin_main.cpp Parādīt failu

@@ -2417,8 +2417,8 @@ static void clean_up_after_endstop_or_probe_move() {
2417 2417
       ny -= (Y_PROBE_OFFSET_FROM_EXTRUDER);
2418 2418
     }
2419 2419
     else if (!position_is_reachable(nx, ny)) return NAN;        // The given position is in terms of the nozzle
2420
-  
2421
-    const float nz = 
2420
+
2421
+    const float nz =
2422 2422
       #if ENABLED(DELTA)
2423 2423
         // Move below clip height or xy move will be aborted by do_blocking_move_to
2424 2424
         min(current_position[Z_AXIS], delta_clip_start_height)
@@ -3446,7 +3446,7 @@ inline void gcode_G0_G1(
3446 3446
     #else
3447 3447
       prepare_move_to_destination();
3448 3448
     #endif
3449
-	
3449
+
3450 3450
     #if ENABLED(NANODLP_Z_SYNC)
3451 3451
       // If G0/G1 command include Z-axis, wait for move and output sync text.
3452 3452
       if (parser.seenval('Z')) {

+ 2
- 2
Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Anet/A6/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Anet/A8/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h Parādīt failu

@@ -1505,10 +1505,10 @@
1505 1505
 /**
1506 1506
  * NanoDLP Sync support
1507 1507
  *
1508
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1508
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1509 1509
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1510 1510
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1511 1511
  */
1512 1512
 //#define NANODLP_Z_SYNC
1513
- 
1513
+
1514 1514
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Cartesio/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Creality/CR-10/Configuration_adv.h Parādīt failu

@@ -1511,10 +1511,10 @@
1511 1511
 /**
1512 1512
  * NanoDLP Sync support
1513 1513
  *
1514
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1514
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1515 1515
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1516 1516
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1517 1517
  */
1518 1518
 //#define NANODLP_Z_SYNC
1519
- 
1519
+
1520 1520
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Felix/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/FolgerTech/i3-2020/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Malyan/M150/Configuration_adv.h Parādīt failu

@@ -1505,10 +1505,10 @@
1505 1505
 /**
1506 1506
  * NanoDLP Sync support
1507 1507
  *
1508
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1508
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1509 1509
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1510 1510
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1511 1511
  */
1512 1512
 //#define NANODLP_Z_SYNC
1513
- 
1513
+
1514 1514
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Micromake/C1/enhanced/Configuration_adv.h Parādīt failu

@@ -1509,10 +1509,10 @@
1509 1509
 /**
1510 1510
  * NanoDLP Sync support
1511 1511
  *
1512
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1512
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1513 1513
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1514 1514
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1515 1515
  */
1516 1516
 //#define NANODLP_Z_SYNC
1517
- 
1517
+
1518 1518
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/RigidBot/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/SCARA/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Sanguinololu/Configuration_adv.h Parādīt failu

@@ -1475,10 +1475,10 @@
1475 1475
 /**
1476 1476
  * NanoDLP Sync support
1477 1477
  *
1478
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1478
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1479 1479
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1480 1480
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1481 1481
  */
1482 1482
 //#define NANODLP_Z_SYNC
1483
- 
1483
+
1484 1484
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/TinyBoy2/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Velleman/K8200/Configuration_adv.h Parādīt failu

@@ -1516,10 +1516,10 @@
1516 1516
 /**
1517 1517
  * NanoDLP Sync support
1518 1518
  *
1519
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1519
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1520 1520
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1521 1521
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1522 1522
  */
1523 1523
 //#define NANODLP_Z_SYNC
1524
- 
1524
+
1525 1525
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/Velleman/K8400/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h Parādīt failu

@@ -1510,10 +1510,10 @@
1510 1510
 /**
1511 1511
  * NanoDLP Sync support
1512 1512
  *
1513
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1513
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1514 1514
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1515 1515
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1516 1516
  */
1517 1517
 //#define NANODLP_Z_SYNC
1518
- 
1518
+
1519 1519
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h Parādīt failu

@@ -1510,10 +1510,10 @@
1510 1510
 /**
1511 1511
  * NanoDLP Sync support
1512 1512
  *
1513
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1513
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1514 1514
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1515 1515
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1516 1516
  */
1517 1517
 //#define NANODLP_Z_SYNC
1518
- 
1518
+
1519 1519
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/generic/Configuration_adv.h Parādīt failu

@@ -1510,10 +1510,10 @@
1510 1510
 /**
1511 1511
  * NanoDLP Sync support
1512 1512
  *
1513
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1513
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1514 1514
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1515 1515
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1516 1516
  */
1517 1517
 //#define NANODLP_Z_SYNC
1518
- 
1518
+
1519 1519
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h Parādīt failu

@@ -1510,10 +1510,10 @@
1510 1510
 /**
1511 1511
  * NanoDLP Sync support
1512 1512
  *
1513
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1513
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1514 1514
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1515 1515
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1516 1516
  */
1517 1517
 //#define NANODLP_Z_SYNC
1518
- 
1518
+
1519 1519
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h Parādīt failu

@@ -1515,10 +1515,10 @@
1515 1515
 /**
1516 1516
  * NanoDLP Sync support
1517 1517
  *
1518
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1518
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1519 1519
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1520 1520
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1521 1521
  */
1522 1522
 //#define NANODLP_Z_SYNC
1523
- 
1523
+
1524 1524
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h Parādīt failu

@@ -1510,10 +1510,10 @@
1510 1510
 /**
1511 1511
  * NanoDLP Sync support
1512 1512
  *
1513
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1513
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1514 1514
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1515 1515
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1516 1516
  */
1517 1517
 //#define NANODLP_Z_SYNC
1518
- 
1518
+
1519 1519
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h Parādīt failu

@@ -1509,10 +1509,10 @@
1509 1509
 /**
1510 1510
  * NanoDLP Sync support
1511 1511
  *
1512
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1512
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1513 1513
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1514 1514
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1515 1515
  */
1516 1516
 //#define NANODLP_Z_SYNC
1517
- 
1517
+
1518 1518
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/makibox/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h Parādīt failu

@@ -1508,10 +1508,10 @@
1508 1508
 /**
1509 1509
  * NanoDLP Sync support
1510 1510
  *
1511
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1511
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1512 1512
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1513 1513
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1514 1514
  */
1515 1515
 //#define NANODLP_Z_SYNC
1516
- 
1516
+
1517 1517
 #endif // CONFIGURATION_ADV_H

+ 2
- 2
Marlin/example_configurations/wt150/Configuration_adv.h Parādīt failu

@@ -1498,10 +1498,10 @@
1498 1498
 /**
1499 1499
  * NanoDLP Sync support
1500 1500
  *
1501
- * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp" 
1501
+ * Add support for Synchronized Z moves when using with NanoDLP. G0/G1 axis moves will output "Z_move_comp"
1502 1502
  * string to enable synchronization with DLP projector exposure. This change will allow to use
1503 1503
  * [[WaitForDoneMessage]] instead of populating your gcode with M400 commands
1504 1504
  */
1505 1505
 //#define NANODLP_Z_SYNC
1506
- 
1506
+
1507 1507
 #endif // CONFIGURATION_ADV_H

Notiek ielāde…
Atcelt
Saglabāt