Add SLOWDOWN_DIVISOR

This commit is contained in:
Scott Lahteine 2020-03-16 16:31:02 -05:00
parent f0f4f21eb0
commit f696cc4440
137 changed files with 705 additions and 21 deletions

View file

@ -755,7 +755,12 @@
// If defined the movements slow down when the look ahead buffer is only half full
// (don't use SLOWDOWN with DELTA because DELTA generates hundreds of segments per second)
//#define SLOWDOWN
//// Slow down the machine if the look ahead buffer is (by default) half full.
// Increase the slowdown divisor for larger buffer sizes.
#define SLOWDOWN
#if ENABLED(SLOWDOWN)
#define SLOWDOWN_DIVISOR 2
#endif
// Frequency limit
// See nophead's blog for more info