Add DELTA_MAX_RADIUS

MarlinFirmware/Marlin#22795
This commit is contained in:
Scott Lahteine 2021-09-19 23:14:03 -05:00
parent 5095d4e587
commit 78ce0d470a
26 changed files with 98 additions and 18 deletions

View file

@ -790,27 +790,30 @@
#if EITHER(DELTA_AUTO_CALIBRATION, DELTA_CALIBRATION_MENU)
// Set the steprate for papertest probing
#define PROBE_MANUALLY_STEP 0.05 // (mm)
#define PROBE_MANUALLY_STEP 0.05 // (mm)
#endif
// Print surface diameter/2 minus unreachable space (avoid collisions with vertical towers).
#define DELTA_PRINTABLE_RADIUS 75.0 // (mm) Overlord
#define DELTA_PRINTABLE_RADIUS 75.0 // (mm) Overlord
// Maximum reachable area
#define DELTA_MAX_RADIUS 75.0 // (mm)
// Center-to-center distance of the holes in the diagonal push rods.
#define DELTA_DIAGONAL_ROD 206.0 // (mm) Overlord
#define DELTA_DIAGONAL_ROD 206.0 // (mm) Overlord
// Distance between bed and nozzle Z home position
#define DELTA_HEIGHT 186.14 // (mm) Overlord - Update this value using G33 auto calibrate
#define DELTA_HEIGHT 186.14 // (mm) Overlord - Update this value using G33 auto calibrate
#define DELTA_ENDSTOP_ADJ { -0.33, 0.0, -0.85 } // Update these values using G33 auto calibrate
#define DELTA_ENDSTOP_ADJ { -0.33, 0.0, -0.85 } // Update these values using G33 auto calibrate
// Horizontal distance bridged by diagonal push rods when effector is centered.
#define DELTA_RADIUS 100.63 // (mm) Overlord - Update this value using G33 auto calibrate
#define DELTA_RADIUS 100.63 // (mm) Overlord - Update this value using G33 auto calibrate
// Trim adjustments for individual towers
// tower angle corrections for X and Y tower / rotate XYZ so Z tower angle = 0
// measured in degrees anticlockwise looking from above the printer
#define DELTA_TOWER_ANGLE_TRIM { 0.69, 0.0, -0.70 } // Update these values using G33 auto calibrate
#define DELTA_TOWER_ANGLE_TRIM { 0.69, 0.0, -0.70 } // Update these values using G33 auto calibrate
// Delta radius and diagonal rod adjustments (mm)
#define DELTA_RADIUS_TRIM_TOWER { 0.0, 0.0, 0.0 }