|
@@ -39,11 +39,11 @@ void GcodeSuite::M211() {
|
39
|
39
|
SERIAL_ECHOPGM(MSG_OFF);
|
40
|
40
|
#endif
|
41
|
41
|
SERIAL_ECHOPGM(MSG_SOFT_MIN);
|
42
|
|
- SERIAL_ECHOPAIR( MSG_X, soft_endstop_min[X_AXIS]);
|
43
|
|
- SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_min[Y_AXIS]);
|
44
|
|
- SERIAL_ECHOPAIR(" " MSG_Z, soft_endstop_min[Z_AXIS]);
|
|
42
|
+ SERIAL_ECHOPAIR( MSG_X, LOGICAL_X_POSITION(soft_endstop_min[X_AXIS]));
|
|
43
|
+ SERIAL_ECHOPAIR(" " MSG_Y, LOGICAL_Y_POSITION(soft_endstop_min[Y_AXIS]));
|
|
44
|
+ SERIAL_ECHOPAIR(" " MSG_Z, LOGICAL_Z_POSITION(soft_endstop_min[Z_AXIS]));
|
45
|
45
|
SERIAL_ECHOPGM(MSG_SOFT_MAX);
|
46
|
|
- SERIAL_ECHOPAIR( MSG_X, soft_endstop_max[X_AXIS]);
|
47
|
|
- SERIAL_ECHOPAIR(" " MSG_Y, soft_endstop_max[Y_AXIS]);
|
48
|
|
- SERIAL_ECHOLNPAIR(" " MSG_Z, soft_endstop_max[Z_AXIS]);
|
|
46
|
+ SERIAL_ECHOPAIR( MSG_X, LOGICAL_X_POSITION(soft_endstop_max[X_AXIS]));
|
|
47
|
+ SERIAL_ECHOPAIR(" " MSG_Y, LOGICAL_Y_POSITION(soft_endstop_max[Y_AXIS]));
|
|
48
|
+ SERIAL_ECHOLNPAIR(" " MSG_Z, LOGICAL_Z_POSITION(soft_endstop_max[Z_AXIS]));
|
49
|
49
|
}
|