1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-29 23:07:42 +00:00

🩹 Fix MKS UI extruder speed (#24476)

This commit is contained in:
toomuchwonder 2022-07-14 04:17:53 +01:00 committed by GitHub
parent 3f4e4a4d89
commit c47575f244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,9 +236,9 @@ typedef struct UI_Config_Struct {
eStepMax = 10;
// Extruder speed (mm/s)
uint8_t extruSpeed;
static constexpr uint8_t eSpeedH = 1,
static constexpr uint8_t eSpeedH = 20,
eSpeedN = 10,
eSpeedL = 20;
eSpeedL = 1;
uint8_t print_state;
uint8_t stepPrintSpeed;
uint8_t waitEndMoves;