🎨 Combine serial echos

This commit is contained in:
Scott Lahteine
2022-05-26 18:18:41 -05:00
committed by Scott Lahteine
parent ccf39b1c42
commit 800a936caa
6 changed files with 33 additions and 55 deletions

View File

@ -1031,8 +1031,7 @@ void MMU2::execute_extruder_sequence(const E_Step * sequence, int steps) {
const float es = pgm_read_float(&(step->extrude));
const feedRate_t fr_mm_m = pgm_read_float(&(step->feedRate));
DEBUG_ECHO_START();
DEBUG_ECHOLNPGM("E step ", es, "/", fr_mm_m);
DEBUG_ECHO_MSG("E step ", es, "/", fr_mm_m);
current_position.e += es;
line_to_current_position(MMM_TO_MMS(fr_mm_m));