From 81129c73653a5af0e22ad221e4aacb9e0c22c76d Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Thu, 1 Oct 2020 19:37:42 +0200 Subject: [PATCH] Disable slowdown for buffer-underruns. It's buggy in marlin 2.0. --- Marlin/Configuration.h | 4 +++- Marlin/Configuration_adv.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 77c86b63..2dac9b1b 100755 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1492,13 +1492,15 @@ // @section machine // The size of the print bed +/* #if ENABLED(KNUTWURST_MEGA) #define X_BED_SIZE 210 #define Y_BED_SIZE 210 #define Z_BED_HEIGHT 210 #endif +*/ -#if ANY(KNUTWURST_MEGA_S, KNUTWURST_MEGA_P) +#if ANY(KNUTWURST_MEGA, KNUTWURST_MEGA_S, KNUTWURST_MEGA_P) #define X_BED_SIZE 225 #define Y_BED_SIZE 220 #define Z_BED_HEIGHT 210 diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 8fa95d0a..2407ca2a 100755 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -781,7 +781,7 @@ // Slow down the machine if the look ahead buffer is (by default) half full. // Increase the slowdown divisor for larger buffer sizes. -#define SLOWDOWN +//#define SLOWDOWN #if ENABLED(SLOWDOWN) #define SLOWDOWN_DIVISOR 2 #endif