Stéphane
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
Marlin/src/lcd/extui/lib/anycubic_i3mega/anycubic_i3mega_lcd.cpp
|
|
@ -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); |
|
|
|