Merge pull request #552 from iXce/Marlin_v1
Report temperatures for all extruders in reply to M105
This commit is contained in:
commit
434b6a05c1
@ -1219,6 +1219,14 @@ void process_commands()
|
|||||||
SERIAL_PROTOCOLPGM(" /");
|
SERIAL_PROTOCOLPGM(" /");
|
||||||
SERIAL_PROTOCOL_F(degTargetBed(),1);
|
SERIAL_PROTOCOL_F(degTargetBed(),1);
|
||||||
#endif //TEMP_BED_PIN
|
#endif //TEMP_BED_PIN
|
||||||
|
for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
|
||||||
|
SERIAL_PROTOCOLPGM(" T");
|
||||||
|
SERIAL_PROTOCOL(cur_extruder);
|
||||||
|
SERIAL_PROTOCOLPGM(":");
|
||||||
|
SERIAL_PROTOCOL_F(degHotend(cur_extruder),1);
|
||||||
|
SERIAL_PROTOCOLPGM(" /");
|
||||||
|
SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1);
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
SERIAL_ERROR_START;
|
SERIAL_ERROR_START;
|
||||||
SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
|
SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
|
||||||
|
Loading…
Reference in New Issue
Block a user