Browse Source

Fix Anycubic i3 Mega target temperature display (#19572)

Also includes a workaround for missing (probably un-fetched) long name in file listing
vanilla_fb_2.0.x
Stéphane 4 years ago
committed by GitHub
parent
commit
ba07c26761
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      Marlin/src/lcd/extui/lib/anycubic_i3mega/anycubic_i3mega_lcd.cpp

6
Marlin/src/lcd/extui/lib/anycubic_i3mega/anycubic_i3mega_lcd.cpp

@ -34,7 +34,7 @@
// command sending macro's with debugging capability
#define SEND_PGM(x) send_P(PSTR(x))
#define SENDLINE_PGM(x) sendLine_P(PSTR(x))
#define SEND_PGM_VAL(x,y) (send_P(PSTR(x)), sendLine(i8tostr3rj(y)))
#define SEND_PGM_VAL(x,y) (send_P(PSTR(x)), sendLine(i16tostr3rj(y)))
#define SEND(x) send(x)
#define SENDLINE(x) sendLine(x)
#if ENABLED(ANYCUBIC_LCD_DEBUG)
@ -496,12 +496,12 @@ void AnycubicTFTClass::RenderCurrentFolder(uint16_t selectedNumber) {
SEND_PGM("/");
SENDLINE(currentFileList.shortFilename());
SEND_PGM("/");
SENDLINE(currentFileList.longFilename());
SENDLINE(currentFileList.filename());
}
else {
SENDLINE(currentFileList.shortFilename());
SENDLINE(currentFileList.longFilename());
SENDLINE(currentFileList.filename());
}
}
}

Loading…
Cancel
Save