|
@@ -2208,7 +2208,7 @@ static void clean_up_after_endstop_or_probe_move() {
|
2208
|
2208
|
SERIAL_PROTOCOLPGM(" Y: ");
|
2209
|
2209
|
SERIAL_PROTOCOL_F(y, 3);
|
2210
|
2210
|
SERIAL_PROTOCOLPGM(" Z: ");
|
2211
|
|
- SERIAL_PROTOCOL_F(measured_z, 3);
|
|
2211
|
+ SERIAL_PROTOCOL_F(measured_z - -zprobe_zoffset + 0.0001, 3);
|
2212
|
2212
|
SERIAL_EOL;
|
2213
|
2213
|
}
|
2214
|
2214
|
|
|
@@ -4455,7 +4455,7 @@ inline void gcode_G28() {
|
4455
|
4455
|
SERIAL_PROTOCOLPGM(" Y: ");
|
4456
|
4456
|
SERIAL_PROTOCOL(Y_probe_location + 0.0001);
|
4457
|
4457
|
SERIAL_PROTOCOLPGM(" Z: ");
|
4458
|
|
- SERIAL_PROTOCOLLN(measured_z + 0.0001);
|
|
4458
|
+ SERIAL_PROTOCOLLN(measured_z - -zprobe_zoffset + 0.0001);
|
4459
|
4459
|
|
4460
|
4460
|
clean_up_after_endstop_or_probe_move();
|
4461
|
4461
|
|