optimisation: serialecho_temperatures should print a constant extruder number
Change in memory: Flash: -18 bytes SRAM: 0 bytes
This commit is contained in:
parent
62fc19b361
commit
76d1f28c14
|
|
@ -10336,9 +10336,7 @@ void serialecho_temperatures() {
|
||||||
float tt = degHotend(active_extruder);
|
float tt = degHotend(active_extruder);
|
||||||
SERIAL_PROTOCOLPGM("T:");
|
SERIAL_PROTOCOLPGM("T:");
|
||||||
SERIAL_PROTOCOL(tt);
|
SERIAL_PROTOCOL(tt);
|
||||||
SERIAL_PROTOCOLPGM(" E:");
|
SERIAL_PROTOCOLPGM(" E:0 B:");
|
||||||
SERIAL_PROTOCOL((int)active_extruder);
|
|
||||||
SERIAL_PROTOCOLPGM(" B:");
|
|
||||||
SERIAL_PROTOCOL_F(degBed(), 1);
|
SERIAL_PROTOCOL_F(degBed(), 1);
|
||||||
SERIAL_PROTOCOLLN();
|
SERIAL_PROTOCOLLN();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue