Tweak BLOCK_BUFFER_SIZE config

This commit is contained in:
Scott Lahteine 2017-11-26 17:33:00 -06:00
parent 5a1f1305f0
commit 51d09bb9c9
31 changed files with 34 additions and 30 deletions

View file

@ -750,7 +750,7 @@
// @section hidden
// The number of linear motions that can be in the plan at any give time.
// THE BLOCK_BUFFER_SIZE NEEDS TO BE A POWER OF 2, i.g. 8,16,32 because shifts and ors are used to do the ring-buffering.
// THE BLOCK_BUFFER_SIZE NEEDS TO BE A POWER OF 2 (e.g. 8, 16, 32) because shifts and ors are used to do the ring-buffering.
#if ENABLED(SDSUPPORT)
#define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
#else