Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ArduinoAVR/Repetier/BedLeveling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ float Printer::runZProbe(bool first, bool last, uint8_t repeat, bool runStartScr
//Com::printFLN(PSTR("ZHSteps:"),lastCorrection - currentPositionSteps[Z_AXIS]);
if(r + 1 < repeat) {
// go only shortest possible move up for repetitions
PrintLine::moveRelativeDistanceInSteps(0, 0, shortMove, 0, HOMING_FEEDRATE_Z, true, true);
PrintLine::moveRelativeDistanceInSteps(0, 0, shortMove, 0, Z_PROBE_SPEED, true, true);
if(Endstops::zProbe()) {
Com::printErrorFLN(PSTR("z-probe did not untrigger on repetitive measurement - maybe you need to increase distance!"));
UI_MESSAGE(1);
Expand Down
2 changes: 1 addition & 1 deletion src/ArduinoDUE/Repetier/BedLeveling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ float Printer::runZProbe(bool first, bool last, uint8_t repeat, bool runStartScr
//Com::printFLN(PSTR("ZHSteps:"),lastCorrection - currentPositionSteps[Z_AXIS]);
if(r + 1 < repeat) {
// go only shortest possible move up for repetitions
PrintLine::moveRelativeDistanceInSteps(0, 0, shortMove, 0, HOMING_FEEDRATE_Z, true, true);
PrintLine::moveRelativeDistanceInSteps(0, 0, shortMove, 0, Z_PROBE_SPEED, true, true);
if(Endstops::zProbe()) {
Com::printErrorFLN(PSTR("z-probe did not untrigger on repetitive measurement - maybe you need to increase distance!"));
UI_MESSAGE(1);
Expand Down