Browse Source

Disable BABYSTEP_XY by default in all configs

Scott Lahteine 7 years ago
parent
commit
f25dccd6d1
29 changed files with 30 additions and 30 deletions
  1. 1
    1
      Marlin/Configuration.h
  2. 2
    2
      Marlin/Configuration_adv.h
  3. 1
    1
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h
  4. 1
    1
      Marlin/example_configurations/Anet/A6/Configuration_adv.h
  5. 1
    1
      Marlin/example_configurations/Anet/A8/Configuration_adv.h
  6. 1
    1
      Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h
  7. 1
    1
      Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h
  8. 1
    1
      Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h
  9. 1
    1
      Marlin/example_configurations/Cartesio/Configuration_adv.h
  10. 1
    1
      Marlin/example_configurations/Felix/Configuration_adv.h
  11. 1
    1
      Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h
  12. 1
    1
      Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h
  13. 1
    1
      Marlin/example_configurations/Malyan/M150/Configuration_adv.h
  14. 1
    1
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  15. 1
    1
      Marlin/example_configurations/SCARA/Configuration_adv.h
  16. 1
    1
      Marlin/example_configurations/Sanguinololu/Configuration.h
  17. 1
    1
      Marlin/example_configurations/Sanguinololu/Configuration_adv.h
  18. 1
    1
      Marlin/example_configurations/TinyBoy2/Configuration_adv.h
  19. 1
    1
      Marlin/example_configurations/Velleman/K8200/Configuration_adv.h
  20. 1
    1
      Marlin/example_configurations/Velleman/K8400/Configuration_adv.h
  21. 1
    1
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h
  22. 1
    1
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  23. 1
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  24. 1
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  25. 1
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  26. 1
    1
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h
  27. 1
    1
      Marlin/example_configurations/makibox/Configuration_adv.h
  28. 1
    1
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
  29. 1
    1
      Marlin/example_configurations/wt150/Configuration_adv.h

+ 1
- 1
Marlin/Configuration.h View File

181
  */
181
  */
182
 //#define PARKING_EXTRUDER
182
 //#define PARKING_EXTRUDER
183
 #if ENABLED(PARKING_EXTRUDER)
183
 #if ENABLED(PARKING_EXTRUDER)
184
-  #define PARKING_EXTRUDER_SOLENOIDS_INVERT           // If enabled, the solenoid not magnetized with applied voltage
184
+  #define PARKING_EXTRUDER_SOLENOIDS_INVERT           // If enabled, the solenoid is NOT magnetized with applied voltage
185
   #define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE LOW  // LOW or HIGH pin signal energizes the coil
185
   #define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE LOW  // LOW or HIGH pin signal energizes the coil
186
   #define PARKING_EXTRUDER_SOLENOIDS_DELAY 250        // Delay (ms) for magnetic field. No delay if 0 or not defined.
186
   #define PARKING_EXTRUDER_SOLENOIDS_DELAY 250        // Delay (ms) for magnetic field. No delay if 0 or not defined.
187
   #define PARKING_EXTRUDER_PARKING_X { -78, 184 }     // X positions for parking the extruders
187
   #define PARKING_EXTRUDER_PARKING_X { -78, 184 }     // X positions for parking the extruders

+ 2
- 2
Marlin/Configuration_adv.h View File

222
 
222
 
223
 /**
223
 /**
224
  * Part-Cooling Fan Multiplexer
224
  * Part-Cooling Fan Multiplexer
225
- * 
225
+ *
226
  * This feature allows you to digitally multiplex the fan output.
226
  * This feature allows you to digitally multiplex the fan output.
227
  * The multiplexer is automatically switched at tool-change.
227
  * The multiplexer is automatically switched at tool-change.
228
  * Set FANMUX[012]_PINs below for up to 2, 4, or 8 multiplexed fans.
228
  * Set FANMUX[012]_PINs below for up to 2, 4, or 8 multiplexed fans.
601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Anet/A6/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Anet/A8/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Felix/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h View File

601
  */
601
  */
602
 #define BABYSTEPPING
602
 #define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 2 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 2 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Malyan/M150/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Sanguinololu/Configuration.h View File

181
  */
181
  */
182
 //#define PARKING_EXTRUDER
182
 //#define PARKING_EXTRUDER
183
 #if ENABLED(PARKING_EXTRUDER)
183
 #if ENABLED(PARKING_EXTRUDER)
184
-  #define PARKING_EXTRUDER_SOLENOIDS_INVERT           // If enabled, the solenoid not magnetized with applied voltage
184
+  #define PARKING_EXTRUDER_SOLENOIDS_INVERT           // If enabled, the solenoid is NOT magnetized with applied voltage
185
   #define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE LOW  // LOW or HIGH pin signal energizes the coil
185
   #define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE LOW  // LOW or HIGH pin signal energizes the coil
186
   #define PARKING_EXTRUDER_SOLENOIDS_DELAY 250        // Delay (ms) for magnetic field. No delay if 0 or not defined.
186
   #define PARKING_EXTRUDER_SOLENOIDS_DELAY 250        // Delay (ms) for magnetic field. No delay if 0 or not defined.
187
   #define PARKING_EXTRUDER_PARKING_X { -78, 184 }     // X positions for parking the extruders
187
   #define PARKING_EXTRUDER_PARKING_X { -78, 184 }     // X positions for parking the extruders

+ 1
- 1
Marlin/example_configurations/Sanguinololu/Configuration_adv.h View File

590
  */
590
  */
591
 //#define BABYSTEPPING
591
 //#define BABYSTEPPING
592
 #if ENABLED(BABYSTEPPING)
592
 #if ENABLED(BABYSTEPPING)
593
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
593
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
594
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
594
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
595
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
595
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
596
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
596
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/TinyBoy2/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Velleman/K8200/Configuration_adv.h View File

614
  */
614
  */
615
 #define BABYSTEPPING
615
 #define BABYSTEPPING
616
 #if ENABLED(BABYSTEPPING)
616
 #if ENABLED(BABYSTEPPING)
617
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
617
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
618
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
618
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
619
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
619
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
620
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
620
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/Velleman/K8400/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h View File

603
  */
603
  */
604
 //#define BABYSTEPPING
604
 //#define BABYSTEPPING
605
 #if ENABLED(BABYSTEPPING)
605
 #if ENABLED(BABYSTEPPING)
606
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
606
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h View File

603
  */
603
  */
604
 //#define BABYSTEPPING
604
 //#define BABYSTEPPING
605
 #if ENABLED(BABYSTEPPING)
605
 #if ENABLED(BABYSTEPPING)
606
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
606
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h View File

603
  */
603
  */
604
 //#define BABYSTEPPING
604
 //#define BABYSTEPPING
605
 #if ENABLED(BABYSTEPPING)
605
 #if ENABLED(BABYSTEPPING)
606
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
606
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h View File

608
  */
608
  */
609
 //#define BABYSTEPPING
609
 //#define BABYSTEPPING
610
 #if ENABLED(BABYSTEPPING)
610
 #if ENABLED(BABYSTEPPING)
611
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
611
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
612
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
612
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
613
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
613
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
614
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
614
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h View File

603
  */
603
  */
604
 //#define BABYSTEPPING
604
 //#define BABYSTEPPING
605
 #if ENABLED(BABYSTEPPING)
605
 #if ENABLED(BABYSTEPPING)
606
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
606
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
607
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
608
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
609
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h View File

601
  */
601
  */
602
 #define BABYSTEPPING
602
 #define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/makibox/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

+ 1
- 1
Marlin/example_configurations/wt150/Configuration_adv.h View File

601
  */
601
  */
602
 //#define BABYSTEPPING
602
 //#define BABYSTEPPING
603
 #if ENABLED(BABYSTEPPING)
603
 #if ENABLED(BABYSTEPPING)
604
-  #define BABYSTEP_XY              // Also enable X/Y Babystepping. Not supported on DELTA!
604
+  //#define BABYSTEP_XY            // Also enable X/Y Babystepping. Not supported on DELTA!
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
605
   #define BABYSTEP_INVERT_Z false  // Change if Z babysteps should go the other way
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
606
   #define BABYSTEP_MULTIPLICATOR 1 // Babysteps are very small. Increase for faster motion.
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping
607
   //#define BABYSTEP_ZPROBE_OFFSET // Enable to combine M851 and Babystepping

Loading…
Cancel
Save