Browse Source

Bring FLSUN config more up to date

Scott Lahteine 7 years ago
parent
commit
9b94210394

+ 7
- 7
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h View File

446
   // and processor overload (too many expensive sqrt calls).
446
   // and processor overload (too many expensive sqrt calls).
447
   #define DELTA_SEGMENTS_PER_SECOND 160
447
   #define DELTA_SEGMENTS_PER_SECOND 160
448
 
448
 
449
-  // NOTE NB all values for DELTA_* values MUST be floating point, so always have a decimal point in them
450
-
451
   // Center-to-center distance of the holes in the diagonal push rods.
449
   // Center-to-center distance of the holes in the diagonal push rods.
452
   #define DELTA_DIAGONAL_ROD 218.0 // mm
450
   #define DELTA_DIAGONAL_ROD 218.0 // mm
453
 
451
 
470
   #define DELTA_PRINTABLE_RADIUS 90.0
468
   #define DELTA_PRINTABLE_RADIUS 90.0
471
 
469
 
472
   // Delta calibration menu
470
   // Delta calibration menu
473
-  // uncomment to add three points calibration menu option.
474
   // See http://minow.blogspot.com/index.html#4918805519571907051
471
   // See http://minow.blogspot.com/index.html#4918805519571907051
475
   #define DELTA_CALIBRATION_MENU
472
   #define DELTA_CALIBRATION_MENU
476
 
473
 
670
  *   is enabled then it also applies to Z_PROBE_SPEED_SLOW.
667
  *   is enabled then it also applies to Z_PROBE_SPEED_SLOW.
671
  */
668
  */
672
 
669
 
670
+// A probe that is deployed and stowed with a solenoid pin (SOL1_PIN)
671
+//#define SOLENOID_PROBE
672
+
673
 // Enable if you have a Z probe mounted on a sled like those designed by Charles Bell.
673
 // Enable if you have a Z probe mounted on a sled like those designed by Charles Bell.
674
 //#define Z_PROBE_SLED
674
 //#define Z_PROBE_SLED
675
 //#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.
675
 //#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.
728
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X 0.0
728
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_X 0.0
729
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y DELTA_PRINTABLE_RADIUS
729
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Y DELTA_PRINTABLE_RADIUS
730
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z 100.0
730
   #define Z_PROBE_ALLEN_KEY_DEPLOY_2_Z 100.0
731
-  #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE (XY_PROBE_SPEED/10)
731
+  #define Z_PROBE_ALLEN_KEY_DEPLOY_2_FEEDRATE (XY_PROBE_SPEED)/10
732
 
732
 
733
   #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X Z_PROBE_ALLEN_KEY_DEPLOY_2_X * 0.75
733
   #define Z_PROBE_ALLEN_KEY_DEPLOY_3_X Z_PROBE_ALLEN_KEY_DEPLOY_2_X * 0.75
734
   #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y Z_PROBE_ALLEN_KEY_DEPLOY_2_Y * 0.75
734
   #define Z_PROBE_ALLEN_KEY_DEPLOY_3_Y Z_PROBE_ALLEN_KEY_DEPLOY_2_Y * 0.75
864
 // @section machine
864
 // @section machine
865
 
865
 
866
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
866
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
867
-#define INVERT_X_DIR true // DELTA does not invert
867
+#define INVERT_X_DIR true
868
 #define INVERT_Y_DIR true
868
 #define INVERT_Y_DIR true
869
 #define INVERT_Z_DIR true
869
 #define INVERT_Z_DIR true
870
 
870
 
871
-// Enable this option for Toshiba steppers
871
+// Enable this option for Toshiba stepper drivers
872
 //#define CONFIG_STEPPERS_TOSHIBA
872
 //#define CONFIG_STEPPERS_TOSHIBA
873
 
873
 
874
 // @section extruder
874
 // @section extruder
987
 #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_BILINEAR)
987
 #if ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_BILINEAR)
988
 
988
 
989
   // Set the number of grid points per dimension.
989
   // Set the number of grid points per dimension.
990
+  // Works best with 5 or more points in each dimension.
990
   #define GRID_MAX_POINTS_X 9
991
   #define GRID_MAX_POINTS_X 9
991
   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
992
   #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
992
 
993
 
1004
   //#define PROBE_Y_FIRST
1005
   //#define PROBE_Y_FIRST
1005
 
1006
 
1006
   #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
1007
   #if ENABLED(AUTO_BED_LEVELING_BILINEAR)
1007
-
1008
     //
1008
     //
1009
     // Experimental Subdivision of the grid by Catmull-Rom method.
1009
     // Experimental Subdivision of the grid by Catmull-Rom method.
1010
     // Synthesizes intermediate points to produce a more detailed mesh.
1010
     // Synthesizes intermediate points to produce a more detailed mesh.

Loading…
Cancel
Save