|
@@ -3375,11 +3375,11 @@ inline void gcode_G28() {
|
3375
|
3375
|
#if HAS_SERVO_ENDSTOPS
|
3376
|
3376
|
raise_z_for_servo();
|
3377
|
3377
|
#endif
|
3378
|
|
- deploy_z_probe(); // Engage Z Servo endstop if available. Z_PROBE_SLED is missed her.
|
|
3378
|
+ deploy_z_probe(); // Engage Z Servo endstop if available. Z_PROBE_SLED is missed here.
|
3379
|
3379
|
|
3380
|
3380
|
st_synchronize();
|
3381
|
3381
|
// TODO: clear the leveling matrix or the planner will be set incorrectly
|
3382
|
|
- setup_for_endstop_move(); // to late. Must be done before deploying.
|
|
3382
|
+ setup_for_endstop_move(); // Too late. Must be done before deploying.
|
3383
|
3383
|
|
3384
|
3384
|
feedrate = homing_feedrate[Z_AXIS];
|
3385
|
3385
|
|
|
@@ -3392,12 +3392,12 @@ inline void gcode_G28() {
|
3392
|
3392
|
SERIAL_PROTOCOL(current_position[Z_AXIS] + 0.0001);
|
3393
|
3393
|
SERIAL_EOL;
|
3394
|
3394
|
|
3395
|
|
- clean_up_after_endstop_move(); // to early. must be done after the stowing.
|
|
3395
|
+ clean_up_after_endstop_move(); // Too early. must be done after the stowing.
|
3396
|
3396
|
|
3397
|
3397
|
#if HAS_SERVO_ENDSTOPS
|
3398
|
3398
|
raise_z_for_servo();
|
3399
|
3399
|
#endif
|
3400
|
|
- stow_z_probe(false); // Retract Z Servo endstop if available. Z_PROBE_SLED is missed her.
|
|
3400
|
+ stow_z_probe(false); // Retract Z Servo endstop if available. Z_PROBE_SLED is missed here.
|
3401
|
3401
|
|
3402
|
3402
|
gcode_M114(); // Send end position to RepetierHost
|
3403
|
3403
|
}
|