Browse Source

Back port Cosmetic changes

Richard Wackerbarth 9 years ago
parent
commit
0b429461d5

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

@@ -460,14 +460,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
460 460
 
461 461
   #else  // !AUTO_BED_LEVELING_GRID
462 462
 
463
-      // Arbitrary points to probe.
464
-      // A simple cross-product is used to estimate the plane of the bed.
465
-      #define ABL_PROBE_PT_1_X 15
466
-      #define ABL_PROBE_PT_1_Y 180
467
-      #define ABL_PROBE_PT_2_X 15
468
-      #define ABL_PROBE_PT_2_Y 20
469
-      #define ABL_PROBE_PT_3_X 170
470
-      #define ABL_PROBE_PT_3_Y 20
463
+    // Arbitrary points to probe.
464
+    // A simple cross-product is used to estimate the plane of the bed.
465
+    #define ABL_PROBE_PT_1_X 15
466
+    #define ABL_PROBE_PT_1_Y 180
467
+    #define ABL_PROBE_PT_2_X 15
468
+    #define ABL_PROBE_PT_2_Y 20
469
+    #define ABL_PROBE_PT_3_X 170
470
+    #define ABL_PROBE_PT_3_Y 20
471 471
 
472 472
   #endif // AUTO_BED_LEVELING_GRID
473 473
 
@@ -486,14 +486,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
486 486
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
487 487
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
488 488
 
489
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
490
-                                                                            // Useful to retract a deployable Z probe.
489
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
490
+                                                                             // Useful to retract a deployable Z probe.
491 491
 
492 492
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
493 493
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
494 494
 
495
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
496
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
495
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
496
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
497 497
 
498 498
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
499 499
                           // When defined, it will:

+ 16
- 16
Marlin/example_configurations/Felix/Configuration_DUAL.h View File

@@ -228,10 +228,10 @@ Here are some standard links for getting your machine calibrated:
228 228
 //#define PID_BED_DEBUG // Sends debug data to the serial port.
229 229
 
230 230
 #if ENABLED(PIDTEMPBED)
231
-// Felix Foil Heater
232
-   #define DEFAULT_bedKp 103.37
233
-   #define DEFAULT_bedKi 2.79
234
-   #define DEFAULT_bedKd 956.94
231
+  // Felix Foil Heater
232
+  #define DEFAULT_bedKp 103.37
233
+  #define DEFAULT_bedKi 2.79
234
+  #define DEFAULT_bedKd 956.94
235 235
 
236 236
 // FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
237 237
 #endif // PIDTEMPBED
@@ -431,14 +431,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
431 431
 
432 432
   #else  // !AUTO_BED_LEVELING_GRID
433 433
 
434
-      // Arbitrary points to probe.
435
-      // A simple cross-product is used to estimate the plane of the bed.
436
-      #define ABL_PROBE_PT_1_X 15
437
-      #define ABL_PROBE_PT_1_Y 180
438
-      #define ABL_PROBE_PT_2_X 15
439
-      #define ABL_PROBE_PT_2_Y 20
440
-      #define ABL_PROBE_PT_3_X 170
441
-      #define ABL_PROBE_PT_3_Y 20
434
+    // Arbitrary points to probe.
435
+    // A simple cross-product is used to estimate the plane of the bed.
436
+    #define ABL_PROBE_PT_1_X 15
437
+    #define ABL_PROBE_PT_1_Y 180
438
+    #define ABL_PROBE_PT_2_X 15
439
+    #define ABL_PROBE_PT_2_Y 20
440
+    #define ABL_PROBE_PT_3_X 170
441
+    #define ABL_PROBE_PT_3_Y 20
442 442
 
443 443
   #endif // AUTO_BED_LEVELING_GRID
444 444
 
@@ -457,14 +457,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
457 457
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
458 458
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
459 459
 
460
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
461
-                                                                            // Useful to retract a deployable Z probe.
460
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
461
+                                                                             // Useful to retract a deployable Z probe.
462 462
 
463 463
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
464 464
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
465 465
 
466
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
467
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
466
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
467
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
468 468
 
469 469
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
470 470
                           // When defined, it will:

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

@@ -471,14 +471,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
471 471
 
472 472
   #else  // !AUTO_BED_LEVELING_GRID
473 473
 
474
-      // Arbitrary points to probe.
475
-      // A simple cross-product is used to estimate the plane of the bed.
476
-      #define ABL_PROBE_PT_1_X 15
477
-      #define ABL_PROBE_PT_1_Y 180
478
-      #define ABL_PROBE_PT_2_X 15
479
-      #define ABL_PROBE_PT_2_Y 20
480
-      #define ABL_PROBE_PT_3_X 170
481
-      #define ABL_PROBE_PT_3_Y 20
474
+    // Arbitrary points to probe.
475
+    // A simple cross-product is used to estimate the plane of the bed.
476
+    #define ABL_PROBE_PT_1_X 15
477
+    #define ABL_PROBE_PT_1_Y 180
478
+    #define ABL_PROBE_PT_2_X 15
479
+    #define ABL_PROBE_PT_2_Y 20
480
+    #define ABL_PROBE_PT_3_X 170
481
+    #define ABL_PROBE_PT_3_Y 20
482 482
 
483 483
   #endif // AUTO_BED_LEVELING_GRID
484 484
 
@@ -497,14 +497,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
497 497
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
498 498
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
499 499
 
500
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
501
-                                                                            // Useful to retract a deployable Z probe.
500
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
501
+                                                                             // Useful to retract a deployable Z probe.
502 502
 
503 503
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
504 504
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
505 505
 
506
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
507
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
506
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
507
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
508 508
 
509 509
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
510 510
                           // When defined, it will:

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

@@ -466,14 +466,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
466 466
 
467 467
   #else  // !AUTO_BED_LEVELING_GRID
468 468
 
469
-      // Arbitrary points to probe.
470
-      // A simple cross-product is used to estimate the plane of the bed.
471
-      #define ABL_PROBE_PT_1_X 15
472
-      #define ABL_PROBE_PT_1_Y 180
473
-      #define ABL_PROBE_PT_2_X 15
474
-      #define ABL_PROBE_PT_2_Y 20
475
-      #define ABL_PROBE_PT_3_X 170
476
-      #define ABL_PROBE_PT_3_Y 20
469
+    // Arbitrary points to probe.
470
+    // A simple cross-product is used to estimate the plane of the bed.
471
+    #define ABL_PROBE_PT_1_X 15
472
+    #define ABL_PROBE_PT_1_Y 180
473
+    #define ABL_PROBE_PT_2_X 15
474
+    #define ABL_PROBE_PT_2_Y 20
475
+    #define ABL_PROBE_PT_3_X 170
476
+    #define ABL_PROBE_PT_3_Y 20
477 477
 
478 478
   #endif // AUTO_BED_LEVELING_GRID
479 479
 
@@ -492,14 +492,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
492 492
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
493 493
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
494 494
 
495
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
496
-                                                                            // Useful to retract a deployable Z probe.
495
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
496
+                                                                             // Useful to retract a deployable Z probe.
497 497
 
498 498
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
499 499
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
500 500
 
501
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
502
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
501
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
502
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
503 503
 
504 504
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
505 505
                           // When defined, it will:

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

@@ -479,14 +479,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
479 479
 
480 480
   #else  // !AUTO_BED_LEVELING_GRID
481 481
 
482
-      // Arbitrary points to probe.
483
-      // A simple cross-product is used to estimate the plane of the bed.
484
-      #define ABL_PROBE_PT_1_X 15
485
-      #define ABL_PROBE_PT_1_Y 180
486
-      #define ABL_PROBE_PT_2_X 15
487
-      #define ABL_PROBE_PT_2_Y 20
488
-      #define ABL_PROBE_PT_3_X 170
489
-      #define ABL_PROBE_PT_3_Y 20
482
+    // Arbitrary points to probe.
483
+    // A simple cross-product is used to estimate the plane of the bed.
484
+    #define ABL_PROBE_PT_1_X 15
485
+    #define ABL_PROBE_PT_1_Y 180
486
+    #define ABL_PROBE_PT_2_X 15
487
+    #define ABL_PROBE_PT_2_Y 20
488
+    #define ABL_PROBE_PT_3_X 170
489
+    #define ABL_PROBE_PT_3_Y 20
490 490
 
491 491
   #endif // AUTO_BED_LEVELING_GRID
492 492
 
@@ -505,14 +505,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
505 505
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
506 506
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
507 507
 
508
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
509
-                                                                            // Useful to retract a deployable Z probe.
508
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
509
+                                                                             // Useful to retract a deployable Z probe.
510 510
 
511 511
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
512 512
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
513 513
 
514
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
515
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
514
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
515
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
516 516
 
517 517
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
518 518
                           // When defined, it will:

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

@@ -464,14 +464,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
464 464
 
465 465
   #else  // !AUTO_BED_LEVELING_GRID
466 466
 
467
-      // Arbitrary points to probe.
468
-      // A simple cross-product is used to estimate the plane of the bed.
469
-      #define ABL_PROBE_PT_1_X 15
470
-      #define ABL_PROBE_PT_1_Y 180
471
-      #define ABL_PROBE_PT_2_X 15
472
-      #define ABL_PROBE_PT_2_Y 20
473
-      #define ABL_PROBE_PT_3_X 170
474
-      #define ABL_PROBE_PT_3_Y 20
467
+    // Arbitrary points to probe.
468
+    // A simple cross-product is used to estimate the plane of the bed.
469
+    #define ABL_PROBE_PT_1_X 15
470
+    #define ABL_PROBE_PT_1_Y 180
471
+    #define ABL_PROBE_PT_2_X 15
472
+    #define ABL_PROBE_PT_2_Y 20
473
+    #define ABL_PROBE_PT_3_X 170
474
+    #define ABL_PROBE_PT_3_Y 20
475 475
 
476 476
   #endif // AUTO_BED_LEVELING_GRID
477 477
 
@@ -490,14 +490,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
490 490
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
491 491
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
492 492
 
493
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
494
-                                                                            // Useful to retract a deployable Z probe.
493
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
494
+                                                                             // Useful to retract a deployable Z probe.
495 495
 
496 496
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
497 497
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
498 498
 
499
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
500
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
499
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
500
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
501 501
 
502 502
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
503 503
                           // When defined, it will:

+ 21
- 21
Marlin/example_configurations/SCARA/Configuration.h View File

@@ -331,9 +331,9 @@ Here are some standard links for getting your machine calibrated:
331 331
   // fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined
332 332
   //#define ENDSTOPPULLUP_XMAX
333 333
   //#define ENDSTOPPULLUP_YMAX
334
-   #define ENDSTOPPULLUP_ZMAX  // open pin, inverted
335
-   #define ENDSTOPPULLUP_XMIN  // open pin, inverted
336
-   #define ENDSTOPPULLUP_YMIN  // open pin, inverted
334
+  #define ENDSTOPPULLUP_ZMAX  // open pin, inverted
335
+  #define ENDSTOPPULLUP_XMIN  // open pin, inverted
336
+  #define ENDSTOPPULLUP_YMIN  // open pin, inverted
337 337
   //#define ENDSTOPPULLUP_ZMIN
338 338
   //#define ENDSTOPPULLUP_ZMIN_PROBE
339 339
 #endif
@@ -486,14 +486,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
486 486
 
487 487
   #else  // !AUTO_BED_LEVELING_GRID
488 488
 
489
-      // Arbitrary points to probe.
490
-      // A simple cross-product is used to estimate the plane of the bed.
491
-      #define ABL_PROBE_PT_1_X 15
492
-      #define ABL_PROBE_PT_1_Y 180
493
-      #define ABL_PROBE_PT_2_X 15
494
-      #define ABL_PROBE_PT_2_Y 20
495
-      #define ABL_PROBE_PT_3_X 170
496
-      #define ABL_PROBE_PT_3_Y 20
489
+    // Arbitrary points to probe.
490
+    // A simple cross-product is used to estimate the plane of the bed.
491
+    #define ABL_PROBE_PT_1_X 15
492
+    #define ABL_PROBE_PT_1_Y 180
493
+    #define ABL_PROBE_PT_2_X 15
494
+    #define ABL_PROBE_PT_2_Y 20
495
+    #define ABL_PROBE_PT_3_X 170
496
+    #define ABL_PROBE_PT_3_Y 20
497 497
 
498 498
   #endif // AUTO_BED_LEVELING_GRID
499 499
 
@@ -512,21 +512,21 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
512 512
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
513 513
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
514 514
 
515
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
516
-                                                                            // Useful to retract a deployable Z probe.
515
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
516
+                                                                             // Useful to retract a deployable Z probe.
517 517
 
518 518
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
519 519
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
520 520
 
521
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
522
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
521
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
522
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
523 523
 
524
- //#define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
525
-                          // When defined, it will:
526
-                          // - Allow Z homing only after X and Y homing AND stepper drivers still enabled.
527
-                          // - If stepper drivers timeout, it will need X and Y homing again before Z homing.
528
-                          // - Position the Z probe in a defined XY point before Z Homing when homing all axis (G28).
529
-                          // - Block Z homing only when the Z probe is outside bed area.
524
+  //#define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
525
+                            // When defined, it will:
526
+                            // - Allow Z homing only after X and Y homing AND stepper drivers still enabled.
527
+                            // - If stepper drivers timeout, it will need X and Y homing again before Z homing.
528
+                            // - Position the Z probe in a defined XY point before Z Homing when homing all axis (G28).
529
+                            // - Block Z homing only when the Z probe is outside bed area.
530 530
 
531 531
   #if ENABLED(Z_SAFE_HOMING)
532 532
 

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

@@ -497,14 +497,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
497 497
 
498 498
   #else  // !AUTO_BED_LEVELING_GRID
499 499
 
500
-      // Arbitrary points to probe.
501
-      // A simple cross-product is used to estimate the plane of the bed.
502
-      #define ABL_PROBE_PT_1_X 15
503
-      #define ABL_PROBE_PT_1_Y 180
504
-      #define ABL_PROBE_PT_2_X 15
505
-      #define ABL_PROBE_PT_2_Y 20
506
-      #define ABL_PROBE_PT_3_X 170
507
-      #define ABL_PROBE_PT_3_Y 20
500
+    // Arbitrary points to probe.
501
+    // A simple cross-product is used to estimate the plane of the bed.
502
+    #define ABL_PROBE_PT_1_X 15
503
+    #define ABL_PROBE_PT_1_Y 180
504
+    #define ABL_PROBE_PT_2_X 15
505
+    #define ABL_PROBE_PT_2_Y 20
506
+    #define ABL_PROBE_PT_3_X 170
507
+    #define ABL_PROBE_PT_3_Y 20
508 508
 
509 509
   #endif // AUTO_BED_LEVELING_GRID
510 510
 
@@ -523,14 +523,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
523 523
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
524 524
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
525 525
 
526
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
527
-                                                                            // Useful to retract a deployable Z probe.
526
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
527
+                                                                             // Useful to retract a deployable Z probe.
528 528
 
529 529
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
530 530
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
531 531
 
532
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
533
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
532
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
533
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
534 534
 
535 535
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
536 536
                           // When defined, it will:

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

@@ -470,14 +470,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
470 470
 
471 471
   #else  // !AUTO_BED_LEVELING_GRID
472 472
 
473
-      // Arbitrary points to probe.
474
-      // A simple cross-product is used to estimate the plane of the bed.
475
-      #define ABL_PROBE_PT_1_X 15
476
-      #define ABL_PROBE_PT_1_Y 180
477
-      #define ABL_PROBE_PT_2_X 15
478
-      #define ABL_PROBE_PT_2_Y 20
479
-      #define ABL_PROBE_PT_3_X 170
480
-      #define ABL_PROBE_PT_3_Y 20
473
+    // Arbitrary points to probe.
474
+    // A simple cross-product is used to estimate the plane of the bed.
475
+    #define ABL_PROBE_PT_1_X 15
476
+    #define ABL_PROBE_PT_1_Y 180
477
+    #define ABL_PROBE_PT_2_X 15
478
+    #define ABL_PROBE_PT_2_Y 20
479
+    #define ABL_PROBE_PT_3_X 170
480
+    #define ABL_PROBE_PT_3_Y 20
481 481
 
482 482
   #endif // AUTO_BED_LEVELING_GRID
483 483
 
@@ -496,14 +496,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
496 496
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
497 497
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
498 498
 
499
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
500
-                                                                            // Useful to retract a deployable Z probe.
499
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
500
+                                                                             // Useful to retract a deployable Z probe.
501 501
 
502 502
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
503 503
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
504 504
 
505
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
506
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
505
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
506
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
507 507
 
508 508
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
509 509
                           // When defined, it will:

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

@@ -479,14 +479,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
479 479
 
480 480
   #else  // !AUTO_BED_LEVELING_GRID
481 481
 
482
-      // Arbitrary points to probe.
483
-      // A simple cross-product is used to estimate the plane of the bed.
484
-      #define ABL_PROBE_PT_1_X 15
485
-      #define ABL_PROBE_PT_1_Y 180
486
-      #define ABL_PROBE_PT_2_X 15
487
-      #define ABL_PROBE_PT_2_Y 20
488
-      #define ABL_PROBE_PT_3_X 170
489
-      #define ABL_PROBE_PT_3_Y 20
482
+    // Arbitrary points to probe.
483
+    // A simple cross-product is used to estimate the plane of the bed.
484
+    #define ABL_PROBE_PT_1_X 15
485
+    #define ABL_PROBE_PT_1_Y 180
486
+    #define ABL_PROBE_PT_2_X 15
487
+    #define ABL_PROBE_PT_2_Y 20
488
+    #define ABL_PROBE_PT_3_X 170
489
+    #define ABL_PROBE_PT_3_Y 20
490 490
 
491 491
   #endif // AUTO_BED_LEVELING_GRID
492 492
 
@@ -505,14 +505,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
505 505
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
506 506
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
507 507
 
508
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
509
-                                                                            // Useful to retract a deployable Z probe.
508
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
509
+                                                                             // Useful to retract a deployable Z probe.
510 510
 
511 511
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
512 512
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
513 513
 
514
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
515
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
514
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
515
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
516 516
 
517 517
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
518 518
                           // When defined, it will:

+ 12
- 12
Marlin/example_configurations/delta/biv2.5/Configuration.h View File

@@ -517,14 +517,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
517 517
 
518 518
   #else  // !AUTO_BED_LEVELING_GRID
519 519
 
520
-      // Arbitrary points to probe.
521
-      // A simple cross-product is used to estimate the plane of the bed.
522
-      #define ABL_PROBE_PT_1_X 15
523
-      #define ABL_PROBE_PT_1_Y 180
524
-      #define ABL_PROBE_PT_2_X 15
525
-      #define ABL_PROBE_PT_2_Y 20
526
-      #define ABL_PROBE_PT_3_X 170
527
-      #define ABL_PROBE_PT_3_Y 20
520
+    // Arbitrary points to probe.
521
+    // A simple cross-product is used to estimate the plane of the bed.
522
+    #define ABL_PROBE_PT_1_X 15
523
+    #define ABL_PROBE_PT_1_Y 180
524
+    #define ABL_PROBE_PT_2_X 15
525
+    #define ABL_PROBE_PT_2_Y 20
526
+    #define ABL_PROBE_PT_3_X 170
527
+    #define ABL_PROBE_PT_3_Y 20
528 528
 
529 529
   #endif // AUTO_BED_LEVELING_GRID
530 530
 
@@ -543,8 +543,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
543 543
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
544 544
   #define Z_RAISE_AFTER_PROBING 50    // How much the Z axis will be raised after the last probing point.
545 545
 
546
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
547
-                                                                            // Useful to retract a deployable Z probe.
546
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
547
+                                                                             // Useful to retract a deployable Z probe.
548 548
 
549 549
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
550 550
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
@@ -630,8 +630,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
630 630
     #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE HOMING_FEEDRATE_XYZ
631 631
   #endif
632 632
 
633
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
634
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
633
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
634
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
635 635
 
636 636
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
637 637
                           // When defined, it will:

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

@@ -518,14 +518,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
518 518
 
519 519
   #else  // !AUTO_BED_LEVELING_GRID
520 520
 
521
-      // Arbitrary points to probe.
522
-      // A simple cross-product is used to estimate the plane of the bed.
523
-      #define ABL_PROBE_PT_1_X 15
524
-      #define ABL_PROBE_PT_1_Y 180
525
-      #define ABL_PROBE_PT_2_X 15
526
-      #define ABL_PROBE_PT_2_Y 20
527
-      #define ABL_PROBE_PT_3_X 170
528
-      #define ABL_PROBE_PT_3_Y 20
521
+    // Arbitrary points to probe.
522
+    // A simple cross-product is used to estimate the plane of the bed.
523
+    #define ABL_PROBE_PT_1_X 15
524
+    #define ABL_PROBE_PT_1_Y 180
525
+    #define ABL_PROBE_PT_2_X 15
526
+    #define ABL_PROBE_PT_2_Y 20
527
+    #define ABL_PROBE_PT_3_X 170
528
+    #define ABL_PROBE_PT_3_Y 20
529 529
 
530 530
   #endif // AUTO_BED_LEVELING_GRID
531 531
 
@@ -544,8 +544,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
544 544
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points
545 545
   #define Z_RAISE_AFTER_PROBING 50    // How much the Z axis will be raised after the last probing point.
546 546
 
547
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
548
-                                                                            // Useful to retract a deployable Z probe.
547
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
548
+                                                                             // Useful to retract a deployable Z probe.
549 549
 
550 550
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
551 551
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
@@ -631,8 +631,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
631 631
     //#define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE HOMING_FEEDRATE_XYZ
632 632
   #endif
633 633
 
634
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
635
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
634
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
635
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
636 636
 
637 637
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
638 638
                           // When defined, it will:

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

@@ -518,14 +518,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
518 518
 
519 519
   #else  // !AUTO_BED_LEVELING_GRID
520 520
 
521
-      // Arbitrary points to probe.
522
-      // A simple cross-product is used to estimate the plane of the bed.
523
-      #define ABL_PROBE_PT_1_X 15
524
-      #define ABL_PROBE_PT_1_Y 180
525
-      #define ABL_PROBE_PT_2_X 15
526
-      #define ABL_PROBE_PT_2_Y 20
527
-      #define ABL_PROBE_PT_3_X 170
528
-      #define ABL_PROBE_PT_3_Y 20
521
+    // Arbitrary points to probe.
522
+    // A simple cross-product is used to estimate the plane of the bed.
523
+    #define ABL_PROBE_PT_1_X 15
524
+    #define ABL_PROBE_PT_1_Y 180
525
+    #define ABL_PROBE_PT_2_X 15
526
+    #define ABL_PROBE_PT_2_Y 20
527
+    #define ABL_PROBE_PT_3_X 170
528
+    #define ABL_PROBE_PT_3_Y 20
529 529
 
530 530
   #endif // AUTO_BED_LEVELING_GRID
531 531
 
@@ -544,8 +544,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
544 544
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points
545 545
   #define Z_RAISE_AFTER_PROBING 50    // How much the Z axis will be raised after the last probing point.
546 546
 
547
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
548
-                                                                            // Useful to retract a deployable Z probe.
547
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
548
+                                                                             // Useful to retract a deployable Z probe.
549 549
 
550 550
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
551 551
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
@@ -635,8 +635,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
635 635
     //#define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE HOMING_FEEDRATE_XYZ
636 636
   #endif
637 637
 
638
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
639
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
638
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
639
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
640 640
 
641 641
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
642 642
                           // When defined, it will:

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

@@ -505,14 +505,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
505 505
 
506 506
   #else  // !AUTO_BED_LEVELING_GRID
507 507
 
508
-      // Arbitrary points to probe.
509
-      // A simple cross-product is used to estimate the plane of the bed.
510
-      #define ABL_PROBE_PT_1_X 15
511
-      #define ABL_PROBE_PT_1_Y 180
512
-      #define ABL_PROBE_PT_2_X 15
513
-      #define ABL_PROBE_PT_2_Y 20
514
-      #define ABL_PROBE_PT_3_X 170
515
-      #define ABL_PROBE_PT_3_Y 20
508
+    // Arbitrary points to probe.
509
+    // A simple cross-product is used to estimate the plane of the bed.
510
+    #define ABL_PROBE_PT_1_X 15
511
+    #define ABL_PROBE_PT_1_Y 180
512
+    #define ABL_PROBE_PT_2_X 15
513
+    #define ABL_PROBE_PT_2_Y 20
514
+    #define ABL_PROBE_PT_3_X 170
515
+    #define ABL_PROBE_PT_3_Y 20
516 516
 
517 517
   #endif // AUTO_BED_LEVELING_GRID
518 518
 
@@ -533,8 +533,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
533 533
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
534 534
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
535 535
 
536
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
537
-                                                                            // Useful to retract a deployable Z probe.
536
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
537
+                                                                             // Useful to retract a deployable Z probe.
538 538
 
539 539
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
540 540
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
@@ -620,8 +620,8 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
620 620
     #define Z_PROBE_ALLEN_KEY_STOW_3_FEEDRATE HOMING_FEEDRATE_XYZ
621 621
   #endif
622 622
 
623
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
624
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
623
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
624
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
625 625
 
626 626
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
627 627
                           // When defined, it will:

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

@@ -481,14 +481,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
481 481
 
482 482
   #else  // !AUTO_BED_LEVELING_GRID
483 483
 
484
-      // Arbitrary points to probe.
485
-      // A simple cross-product is used to estimate the plane of the bed.
486
-      #define ABL_PROBE_PT_1_X 15
487
-      #define ABL_PROBE_PT_1_Y 180
488
-      #define ABL_PROBE_PT_2_X 15
489
-      #define ABL_PROBE_PT_2_Y 20
490
-      #define ABL_PROBE_PT_3_X 170
491
-      #define ABL_PROBE_PT_3_Y 20
484
+    // Arbitrary points to probe.
485
+    // A simple cross-product is used to estimate the plane of the bed.
486
+    #define ABL_PROBE_PT_1_X 15
487
+    #define ABL_PROBE_PT_1_Y 180
488
+    #define ABL_PROBE_PT_2_X 15
489
+    #define ABL_PROBE_PT_2_Y 20
490
+    #define ABL_PROBE_PT_3_X 170
491
+    #define ABL_PROBE_PT_3_Y 20
492 492
 
493 493
   #endif // AUTO_BED_LEVELING_GRID
494 494
 
@@ -507,14 +507,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
507 507
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
508 508
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
509 509
 
510
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
511
-                                                                            // Useful to retract a deployable Z probe.
510
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
511
+                                                                             // Useful to retract a deployable Z probe.
512 512
 
513 513
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
514 514
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
515 515
 
516
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
517
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
516
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
517
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
518 518
 
519 519
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
520 520
                           // When defined, it will:

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

@@ -469,14 +469,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
469 469
 
470 470
   #else  // !AUTO_BED_LEVELING_GRID
471 471
 
472
-      // Arbitrary points to probe.
473
-      // A simple cross-product is used to estimate the plane of the bed.
474
-      #define ABL_PROBE_PT_1_X 15
475
-      #define ABL_PROBE_PT_1_Y 180
476
-      #define ABL_PROBE_PT_2_X 15
477
-      #define ABL_PROBE_PT_2_Y 20
478
-      #define ABL_PROBE_PT_3_X 170
479
-      #define ABL_PROBE_PT_3_Y 20
472
+    // Arbitrary points to probe.
473
+    // A simple cross-product is used to estimate the plane of the bed.
474
+    #define ABL_PROBE_PT_1_X 15
475
+    #define ABL_PROBE_PT_1_Y 180
476
+    #define ABL_PROBE_PT_2_X 15
477
+    #define ABL_PROBE_PT_2_Y 20
478
+    #define ABL_PROBE_PT_3_X 170
479
+    #define ABL_PROBE_PT_3_Y 20
480 480
 
481 481
   #endif // AUTO_BED_LEVELING_GRID
482 482
 
@@ -495,14 +495,14 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
495 495
   #define Z_RAISE_BETWEEN_PROBINGS 5  // How much the Z axis will be raised when traveling from between next probing points.
496 496
   #define Z_RAISE_AFTER_PROBING 15    // How much the Z axis will be raised after the last probing point.
497 497
 
498
-//#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
499
-                                                                            // Useful to retract a deployable Z probe.
498
+  //#define Z_PROBE_END_SCRIPT "G1 Z10 F12000\nG1 X15 Y330\nG1 Z0.5\nG1 Z10" // These commands will be executed in the end of G29 routine.
499
+                                                                             // Useful to retract a deployable Z probe.
500 500
 
501 501
   //#define Z_PROBE_SLED // Turn on if you have a Z probe mounted on a sled like those designed by Charles Bell.
502 502
   //#define SLED_DOCKING_OFFSET 5 // The extra distance the X axis must travel to pickup the sled. 0 should be fine but you can push it further if you'd like.
503 503
 
504
-// If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
505
-// it is highly recommended you let this Z_SAFE_HOMING enabled!!!
504
+  // If you have enabled the bed auto leveling and are using the same Z probe for Z homing,
505
+  // it is highly recommended you let this Z_SAFE_HOMING enabled!!!
506 506
 
507 507
   #define Z_SAFE_HOMING   // This feature is meant to avoid Z homing with Z probe outside the bed area.
508 508
                           // When defined, it will:

Loading…
Cancel
Save