z leveing bed failed

repetier firmware 0.92.9 version;
when i enter G29, it only goes to 3 point(different from you) and so how to add the correction factor in it ?


/* DISTORTION_CORRECTION compensates the distortion caused by mechanical imprecisions of nonlinear (i.e. DELTA) printers
* assumes that the floor is plain (i.e. glass plate)
* and that it is perpendicular to the towers
* and that the (0,0) is in center
* requires z-probe
* G29 measures the Z offset in matrix NxN points (due to nature of the delta printer, the corners are extrapolated instead of measured)
* and compensate the distortion
* more points means better compensation, but consumes more memory and takes more time
* DISTORTION_CORRECTION_R is the distance of last row or column from center
*/

#define DISTORTION_CORRECTION 1
#define DISTORTION_CORRECTION_POINTS 5
/* For delta printers you simply define the measured radius around origin */
#define DISTORTION_CORRECTION_R 80
/* For all others you define the correction rectangle by setting the min/max coordinates. Make sure the the probe can reach all points! */
#define DISTORTION_XMIN 10
#define DISTORTION_YMIN 10
#define DISTORTION_XMAX 190
#define DISTORTION_YMAX 190



Comments

Sign In or Register to comment.