Fix extrudernum in MSG_INVALID_EXTRUDER
SERIAL_ECHO is not very good in printing uint8_t - so cast. to int.
This commit is contained in:
parent
32f75749e4
commit
338b69c24b
|
@ -7380,7 +7380,7 @@ bool setTargetedHotend(int code) {
|
|||
SERIAL_CHAR('M');
|
||||
SERIAL_ECHO(code);
|
||||
SERIAL_ECHOPGM(" " MSG_INVALID_EXTRUDER " ");
|
||||
SERIAL_ECHOLN(target_extruder);
|
||||
SERIAL_ECHOLN((int)target_extruder);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue