From 978f342392964ee0e737cf0dffe9ba4e6fde33fc Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 14 Mar 2018 04:37:04 -0500 Subject: [PATCH] Reduce some tmc_util strings --- Marlin/src/feature/tmc_util.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Marlin/src/feature/tmc_util.cpp b/Marlin/src/feature/tmc_util.cpp index 40994d8c7f..8364fa8690 100644 --- a/Marlin/src/feature/tmc_util.cpp +++ b/Marlin/src/feature/tmc_util.cpp @@ -229,11 +229,11 @@ void _tmc_say_axis(const TMC_AxisEnum axis) { void _tmc_say_current(const TMC_AxisEnum axis, const uint16_t curr) { _tmc_say_axis(axis); - SERIAL_ECHOLNPAIR(" axis driver current: ", curr); + SERIAL_ECHOLNPAIR(" driver current: ", curr); } void _tmc_say_otpw(const TMC_AxisEnum axis, const bool otpw) { _tmc_say_axis(axis); - SERIAL_ECHOPGM(" axis temperature prewarn triggered: "); + SERIAL_ECHOPGM(" temperature prewarn triggered: "); serialprintPGM(otpw ? PSTR("true") : PSTR("false")); SERIAL_EOL(); } @@ -243,11 +243,11 @@ void _tmc_say_otpw_cleared(const TMC_AxisEnum axis) { } void _tmc_say_pwmthrs(const TMC_AxisEnum axis, const uint32_t thrs) { _tmc_say_axis(axis); - SERIAL_ECHOLNPAIR(" stealthChop max speed set to ", thrs); + SERIAL_ECHOLNPAIR(" stealthChop max speed: ", thrs); } void _tmc_say_sgt(const TMC_AxisEnum axis, const int8_t sgt) { _tmc_say_axis(axis); - SERIAL_ECHOPGM(" driver homing sensitivity set to "); + SERIAL_ECHOPGM(" homing sensitivity: "); SERIAL_PRINTLN(sgt, DEC); }