etc
This commit is contained in:
@@ -332,16 +332,16 @@ inline void probe_sides(measurements_t &m, const float uncertainty) {
|
|||||||
probe_side(m, uncertainty, TOP);
|
probe_side(m, uncertainty, TOP);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allow Y axis to probe and compute values before X axis (or remaining arbitrary axes)
|
||||||
|
* to assist with centering in calibration object. Lulzbot saw issues with higher uncertainty
|
||||||
|
* values where the nozzle was catching on the edges of the cube, and this was intended to help
|
||||||
|
* ensure the probe object remained centered.
|
||||||
|
*/
|
||||||
TERN_(CALIBRATION_MEASURE_FRONT, probe_side(m, uncertainty, FRONT, probe_top_at_edge));
|
TERN_(CALIBRATION_MEASURE_FRONT, probe_side(m, uncertainty, FRONT, probe_top_at_edge));
|
||||||
TERN_(CALIBRATION_MEASURE_BACK, probe_side(m, uncertainty, BACK, probe_top_at_edge));
|
TERN_(CALIBRATION_MEASURE_BACK, probe_side(m, uncertainty, BACK, probe_top_at_edge));
|
||||||
|
|
||||||
#if HAS_Y_CENTER
|
#if HAS_Y_CENTER
|
||||||
/**
|
|
||||||
* Allow Y axis to probe and compute values before X axis (or remaining arbitrary axes)
|
|
||||||
* to assist with centering in calibration object. Lulzbot saw issues with higher uncertainty
|
|
||||||
* values where the nozzle was catching on the edges of the cube, and this was intended to help
|
|
||||||
* ensure the probe object remained centered.
|
|
||||||
*/
|
|
||||||
m.obj_center.y = (m.obj_side[FRONT] + m.obj_side[BACK]) / 2;
|
m.obj_center.y = (m.obj_side[FRONT] + m.obj_side[BACK]) / 2;
|
||||||
m.nozzle_outer_dimension.y = m.obj_side[BACK] - m.obj_side[FRONT] - dimensions.y;
|
m.nozzle_outer_dimension.y = m.obj_side[BACK] - m.obj_side[FRONT] - dimensions.y;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user