Miscellaneous tweaks to serial outputs, code cleanups

This commit is contained in:
Scott Lahteine 2017-08-21 16:30:08 -05:00
parent e82e9073d6
commit e337df2e98
4 changed files with 10 additions and 6 deletions

View file

@ -1559,7 +1559,7 @@ void Temperature::set_current_temp_raw() {
if (endstop_change) {
#if HAS_X_MIN
if (TEST(endstop_change, X_MIN)) SERIAL_PROTOCOLPAIR("X_MIN:", !!TEST(current_endstop_bits_local, X_MIN));
if (TEST(endstop_change, X_MIN)) SERIAL_PROTOCOLPAIR(" X_MIN:", !!TEST(current_endstop_bits_local, X_MIN));
#endif
#if HAS_X_MAX
if (TEST(endstop_change, X_MAX)) SERIAL_PROTOCOLPAIR(" X_MAX:", !!TEST(current_endstop_bits_local, X_MAX));