В ответ на M105 не выводить "ok"
перед температурой
This commit is contained in:
@@ -31,8 +31,10 @@ void GcodeSuite::M105() {
|
||||
const int8_t target_extruder = get_target_extruder_from_command();
|
||||
if (target_extruder < 0) return;
|
||||
|
||||
#if DISABLED(MKS_WIFI)
|
||||
SERIAL_ECHOPGM(STR_OK);
|
||||
|
||||
#endif
|
||||
|
||||
#if HAS_TEMP_SENSOR
|
||||
|
||||
thermalManager.print_heater_states(target_extruder
|
||||
|
||||
@@ -3002,7 +3002,9 @@ void Temperature::tick() {
|
||||
default: k = 'B'; break;
|
||||
#endif
|
||||
}
|
||||
#if DISABLED(MKS_WIFI)
|
||||
SERIAL_CHAR(' ');
|
||||
#endif
|
||||
SERIAL_CHAR(k);
|
||||
#if HOTENDS > 1
|
||||
if (e >= 0) SERIAL_CHAR('0' + e);
|
||||
|
||||
Reference in New Issue
Block a user