mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-24 15:13:54 -06:00
Allow SERIAL_ECHOPAIR to take up to 12 pairs (#13311)
This commit is contained in:
parent
4771e372a1
commit
cfdb38eda4
30 changed files with 474 additions and 611 deletions
|
@ -804,12 +804,8 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
|
|||
#endif
|
||||
|
||||
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
||||
if (DEBUGGING(LEVELING)) {
|
||||
SERIAL_ECHOPAIR("Offset Tool XY by { ", xdiff);
|
||||
SERIAL_ECHOPAIR(", ", ydiff);
|
||||
SERIAL_ECHOPAIR(", ", zdiff);
|
||||
SERIAL_ECHOLNPGM(" }");
|
||||
}
|
||||
if (DEBUGGING(LEVELING))
|
||||
SERIAL_ECHOLNPAIR("Offset Tool XY by { ", xdiff, ", ", ydiff, ", ", zdiff, " }");
|
||||
#endif
|
||||
|
||||
// The newly-selected extruder XY is actually at...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue