Disable slowdown for buffer-underruns. It's buggy in marlin 2.0.

This commit is contained in:
Knutwurst
2020-10-01 19:37:42 +02:00
parent d7ae56c292
commit 81129c7365
2 changed files with 4 additions and 2 deletions

View File

@@ -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

View File

@@ -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