|
@@ -5116,20 +5116,8 @@ static void report_current_position() {
|
5116
|
5116
|
stepper.report_positions();
|
5117
|
5117
|
|
5118
|
5118
|
#if IS_SCARA
|
5119
|
|
- SERIAL_PROTOCOLPGM("SCARA Theta:");
|
5120
|
|
- SERIAL_PROTOCOL(delta[A_AXIS]);
|
5121
|
|
- SERIAL_PROTOCOLPGM(" Psi+Theta:");
|
5122
|
|
- SERIAL_PROTOCOLLN(delta[B_AXIS]);
|
5123
|
|
-
|
5124
|
|
- SERIAL_PROTOCOLPGM("SCARA Cal - Theta:");
|
5125
|
|
- SERIAL_PROTOCOL(delta[A_AXIS]);
|
5126
|
|
- SERIAL_PROTOCOLPGM(" Psi+Theta (90):");
|
5127
|
|
- SERIAL_PROTOCOLLN(delta[B_AXIS] - delta[A_AXIS] - 90);
|
5128
|
|
-
|
5129
|
|
- SERIAL_PROTOCOLPGM("SCARA step Cal - Theta:");
|
5130
|
|
- SERIAL_PROTOCOL(delta[A_AXIS] / 90 * planner.axis_steps_per_mm[A_AXIS]);
|
5131
|
|
- SERIAL_PROTOCOLPGM(" Psi+Theta:");
|
5132
|
|
- SERIAL_PROTOCOLLN((delta[B_AXIS] - delta[A_AXIS]) / 90 * planner.axis_steps_per_mm[A_AXIS]);
|
|
5119
|
+ SERIAL_PROTOCOLPAIR("SCARA Theta:", stepper.get_axis_position_mm(A_AXIS));
|
|
5120
|
+ SERIAL_PROTOCOLLNPAIR(" Psi+Theta:", stepper.get_axis_position_mm(B_AXIS));
|
5133
|
5121
|
SERIAL_EOL;
|
5134
|
5122
|
#endif
|
5135
|
5123
|
}
|