optimisation: serialecho_temperatures should print a constant extruder number

Change in memory:
Flash: -18 bytes
SRAM: 0 bytes
This commit is contained in:
Guðni Már Gilbert 2023-01-14 11:05:48 +00:00
parent 62fc19b361
commit 76d1f28c14
1 changed files with 1 additions and 3 deletions

View File

@ -10336,9 +10336,7 @@ void serialecho_temperatures() {
float tt = degHotend(active_extruder);
SERIAL_PROTOCOLPGM("T:");
SERIAL_PROTOCOL(tt);
SERIAL_PROTOCOLPGM(" E:");
SERIAL_PROTOCOL((int)active_extruder);
SERIAL_PROTOCOLPGM(" B:");
SERIAL_PROTOCOLPGM(" E:0 B:");
SERIAL_PROTOCOL_F(degBed(), 1);
SERIAL_PROTOCOLLN();
}