|
@@ -229,11 +229,11 @@ void _tmc_say_axis(const TMC_AxisEnum axis) {
|
229
|
229
|
|
230
|
230
|
void _tmc_say_current(const TMC_AxisEnum axis, const uint16_t curr) {
|
231
|
231
|
_tmc_say_axis(axis);
|
232
|
|
- SERIAL_ECHOLNPAIR(" axis driver current: ", curr);
|
|
232
|
+ SERIAL_ECHOLNPAIR(" driver current: ", curr);
|
233
|
233
|
}
|
234
|
234
|
void _tmc_say_otpw(const TMC_AxisEnum axis, const bool otpw) {
|
235
|
235
|
_tmc_say_axis(axis);
|
236
|
|
- SERIAL_ECHOPGM(" axis temperature prewarn triggered: ");
|
|
236
|
+ SERIAL_ECHOPGM(" temperature prewarn triggered: ");
|
237
|
237
|
serialprintPGM(otpw ? PSTR("true") : PSTR("false"));
|
238
|
238
|
SERIAL_EOL();
|
239
|
239
|
}
|
|
@@ -243,11 +243,11 @@ void _tmc_say_otpw_cleared(const TMC_AxisEnum axis) {
|
243
|
243
|
}
|
244
|
244
|
void _tmc_say_pwmthrs(const TMC_AxisEnum axis, const uint32_t thrs) {
|
245
|
245
|
_tmc_say_axis(axis);
|
246
|
|
- SERIAL_ECHOLNPAIR(" stealthChop max speed set to ", thrs);
|
|
246
|
+ SERIAL_ECHOLNPAIR(" stealthChop max speed: ", thrs);
|
247
|
247
|
}
|
248
|
248
|
void _tmc_say_sgt(const TMC_AxisEnum axis, const int8_t sgt) {
|
249
|
249
|
_tmc_say_axis(axis);
|
250
|
|
- SERIAL_ECHOPGM(" driver homing sensitivity set to ");
|
|
250
|
+ SERIAL_ECHOPGM(" homing sensitivity: ");
|
251
|
251
|
SERIAL_PRINTLN(sgt, DEC);
|
252
|
252
|
}
|
253
|
253
|
|