Merge pull request #2076 from thinkyhead/mendel_inverting
Use MSG_OK in M105
This commit is contained in:
commit
e97fcafd0e
|
@ -1810,7 +1810,6 @@ inline void gcode_G0_G1() {
|
|||
#endif //FWRETRACT
|
||||
|
||||
prepare_move();
|
||||
//ok_to_send();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3372,7 +3371,7 @@ inline void gcode_M105() {
|
|||
if (setTargetedHotend(105)) return;
|
||||
|
||||
#if HAS_TEMP_0 || HAS_TEMP_BED || defined(HEATER_0_USES_MAX6675)
|
||||
SERIAL_PROTOCOLPGM("ok");
|
||||
SERIAL_PROTOCOLPGM(MSG_OK);
|
||||
#if HAS_TEMP_0
|
||||
SERIAL_PROTOCOLPGM(" T:");
|
||||
SERIAL_PROTOCOL_F(degHotend(target_extruder), 1);
|
||||
|
|
Loading…
Reference in a new issue