|
|
@ -99,38 +99,6 @@ Here are some standard links for getting your machine calibrated:
|
|
|
|
// Define this to have the electronics keep the power supply off on startup. If you don't know what this is leave it.
|
|
|
|
// Define this to have the electronics keep the power supply off on startup. If you don't know what this is leave it.
|
|
|
|
// #define PS_DEFAULT_OFF
|
|
|
|
// #define PS_DEFAULT_OFF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
//============================== Delta Settings =============================
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
// Enable DELTA kinematics and most of the default configuration for Deltas
|
|
|
|
|
|
|
|
#define DELTA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Make delta curves from many straight lines (linear interpolation).
|
|
|
|
|
|
|
|
// This is a trade-off between visible corners (not enough segments)
|
|
|
|
|
|
|
|
// and processor overload (too many expensive sqrt calls).
|
|
|
|
|
|
|
|
#define DELTA_SEGMENTS_PER_SECOND 100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// NOTE NB all values for DELTA_* values MUST be floating point, so always have a decimal point in them
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Center-to-center distance of the holes in the diagonal push rods.
|
|
|
|
|
|
|
|
#define DELTA_DIAGONAL_ROD 440.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset from middle of printer to smooth rod center.
|
|
|
|
|
|
|
|
#define DELTA_SMOOTH_ROD_OFFSET 330.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset of the universal joints on the end effector.
|
|
|
|
|
|
|
|
#define DELTA_EFFECTOR_OFFSET 50.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset of the universal joints on the carriages.
|
|
|
|
|
|
|
|
#define DELTA_CARRIAGE_OFFSET 20.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal distance bridged by diagonal push rods when effector is centered.
|
|
|
|
|
|
|
|
#define DELTA_RADIUS (DELTA_SMOOTH_ROD_OFFSET-DELTA_EFFECTOR_OFFSET-DELTA_CARRIAGE_OFFSET)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Print surface diameter/2 minus unreachable space (avoid collisions with vertical towers).
|
|
|
|
|
|
|
|
#define DELTA_PRINTABLE_RADIUS 160
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @section temperature
|
|
|
|
// @section temperature
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//===========================================================================
|
|
|
@ -336,6 +304,41 @@ Here are some standard links for getting your machine calibrated:
|
|
|
|
// Uncomment this option to enable CoreXY kinematics
|
|
|
|
// Uncomment this option to enable CoreXY kinematics
|
|
|
|
// #define COREXY
|
|
|
|
// #define COREXY
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
//============================== Delta Settings =============================
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
// Enable DELTA kinematics and most of the default configuration for Deltas
|
|
|
|
|
|
|
|
#define DELTA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DELTA
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Make delta curves from many straight lines (linear interpolation).
|
|
|
|
|
|
|
|
// This is a trade-off between visible corners (not enough segments)
|
|
|
|
|
|
|
|
// and processor overload (too many expensive sqrt calls).
|
|
|
|
|
|
|
|
#define DELTA_SEGMENTS_PER_SECOND 100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// NOTE NB all values for DELTA_* values MUST be floating point, so always have a decimal point in them
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Center-to-center distance of the holes in the diagonal push rods.
|
|
|
|
|
|
|
|
#define DELTA_DIAGONAL_ROD 440.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset from middle of printer to smooth rod center.
|
|
|
|
|
|
|
|
#define DELTA_SMOOTH_ROD_OFFSET 330.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset of the universal joints on the end effector.
|
|
|
|
|
|
|
|
#define DELTA_EFFECTOR_OFFSET 50.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal offset of the universal joints on the carriages.
|
|
|
|
|
|
|
|
#define DELTA_CARRIAGE_OFFSET 20.0 // mm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Horizontal distance bridged by diagonal push rods when effector is centered.
|
|
|
|
|
|
|
|
#define DELTA_RADIUS (DELTA_SMOOTH_ROD_OFFSET-DELTA_EFFECTOR_OFFSET-DELTA_CARRIAGE_OFFSET)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Print surface diameter/2 minus unreachable space (avoid collisions with vertical towers).
|
|
|
|
|
|
|
|
#define DELTA_PRINTABLE_RADIUS 160
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Enable this option for Toshiba steppers
|
|
|
|
// Enable this option for Toshiba steppers
|
|
|
|
// #define CONFIG_STEPPERS_TOSHIBA
|
|
|
|
// #define CONFIG_STEPPERS_TOSHIBA
|
|
|
|
|
|
|
|
|
|
|
|