|
@@ -2287,7 +2287,7 @@ static void clean_up_after_endstop_or_probe_move() {
|
2287
|
2287
|
SERIAL_PROTOCOLPGM(" Y: ");
|
2288
|
2288
|
SERIAL_PROTOCOL_F(y, 3);
|
2289
|
2289
|
SERIAL_PROTOCOLPGM(" Z: ");
|
2290
|
|
- SERIAL_PROTOCOL_F(measured_z - -zprobe_zoffset + 0.0001, 3);
|
|
2290
|
+ SERIAL_PROTOCOL_F(FIXFLOAT(measured_z - -zprobe_zoffset), 3);
|
2291
|
2291
|
SERIAL_EOL;
|
2292
|
2292
|
}
|
2293
|
2293
|
|
|
@@ -4499,11 +4499,11 @@ inline void gcode_G28() {
|
4499
|
4499
|
float measured_z = probe_pt(X_probe_location, Y_probe_location, stow, 1);
|
4500
|
4500
|
|
4501
|
4501
|
SERIAL_PROTOCOLPGM("Bed X: ");
|
4502
|
|
- SERIAL_PROTOCOL(X_probe_location + 0.0001);
|
|
4502
|
+ SERIAL_PROTOCOL(FIXFLOAT(X_probe_location));
|
4503
|
4503
|
SERIAL_PROTOCOLPGM(" Y: ");
|
4504
|
|
- SERIAL_PROTOCOL(Y_probe_location + 0.0001);
|
|
4504
|
+ SERIAL_PROTOCOL(FIXFLOAT(Y_probe_location));
|
4505
|
4505
|
SERIAL_PROTOCOLPGM(" Z: ");
|
4506
|
|
- SERIAL_PROTOCOLLN(measured_z - -zprobe_zoffset + 0.0001);
|
|
4506
|
+ SERIAL_PROTOCOLLN(FIXFLOAT(measured_z - -zprobe_zoffset));
|
4507
|
4507
|
|
4508
|
4508
|
clean_up_after_endstop_or_probe_move();
|
4509
|
4509
|
|