Fix Anycubic I3 Mega (S) original screen % display (#19210)

This commit is contained in:
Stéphane 2020-09-01 05:27:42 +02:00 committed by GitHub
parent d3ac4ba83d
commit 2979da73cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@
#include "../../../../inc/MarlinConfig.h"
#include "../../ui_api.h"
#include "../../../../MarlinCore.h" // for quickstop_stepper and disable_steppers
#include "../../../../module/motion.h" // for A20 read printing speed feedrate_percentage
// command sending macro's with debugging capability
#define SEND_PGM(x) send_P(PSTR(x))
@ -412,6 +413,7 @@ void AnycubicTFTClass::RenderCurrentFileList() {
uint16_t selectedNumber = 0;
SelectedDirectory[0] = 0;
SelectedFile[0] = 0;
ExtUI::FileList currentFileList;
SENDLINE_PGM("FN "); // Filelist start
@ -427,7 +429,7 @@ void AnycubicTFTClass::RenderCurrentFileList() {
if (SpecialMenu)
RenderSpecialMenu(selectedNumber);
else
else if (selectedNumber <= currentFileList.count())
RenderCurrentFolder(selectedNumber);
}
SENDLINE_PGM("END"); // Filelist stop
@ -804,7 +806,6 @@ void AnycubicTFTClass::GetCommandFromTFT() {
break;
case 20: { // A20 read printing speed
int16_t feedrate_percentage = 100;
if (CodeSeen('S'))
feedrate_percentage = constrain(CodeValue(), 40, 999);