Browse Source

Tweak BLOCK_BUFFER_SIZE config

Scott Lahteine 6 years ago
parent
commit
51d09bb9c9
31 changed files with 34 additions and 30 deletions
  1. 1
    1
      Marlin/Configuration_adv.h
  2. 4
    0
      Marlin/SanityCheck.h
  3. 1
    1
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h
  4. 1
    1
      Marlin/example_configurations/Anet/A6/Configuration_adv.h
  5. 1
    1
      Marlin/example_configurations/Anet/A8/Configuration_adv.h
  6. 1
    1
      Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h
  7. 1
    1
      Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h
  8. 1
    1
      Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h
  9. 1
    1
      Marlin/example_configurations/Cartesio/Configuration_adv.h
  10. 1
    1
      Marlin/example_configurations/Creality/CR-10/Configuration_adv.h
  11. 1
    1
      Marlin/example_configurations/Felix/Configuration_adv.h
  12. 1
    1
      Marlin/example_configurations/FolgerTech/i3-2020/Configuration_adv.h
  13. 1
    1
      Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h
  14. 1
    1
      Marlin/example_configurations/Malyan/M150/Configuration_adv.h
  15. 1
    1
      Marlin/example_configurations/Micromake/C1/enhanced/Configuration_adv.h
  16. 1
    1
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  17. 1
    1
      Marlin/example_configurations/SCARA/Configuration_adv.h
  18. 1
    1
      Marlin/example_configurations/Sanguinololu/Configuration_adv.h
  19. 1
    1
      Marlin/example_configurations/TinyBoy2/Configuration_adv.h
  20. 1
    1
      Marlin/example_configurations/Velleman/K8200/Configuration_adv.h
  21. 1
    1
      Marlin/example_configurations/Velleman/K8400/Configuration_adv.h
  22. 1
    1
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h
  23. 1
    1
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h
  24. 1
    1
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  25. 1
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  26. 1
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  27. 1
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  28. 1
    1
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h
  29. 1
    1
      Marlin/example_configurations/makibox/Configuration_adv.h
  30. 1
    1
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
  31. 1
    1
      Marlin/example_configurations/wt150/Configuration_adv.h

+ 1
- 1
Marlin/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 4
- 0
Marlin/SanityCheck.h View File

@@ -1508,3 +1508,7 @@ static_assert(COUNT(sanity_arr_3) <= XYZE_N, "DEFAULT_MAX_ACCELERATION has too m
1508 1508
 #if ENABLED(CNC_COORDINATE_SYSTEMS) && ENABLED(NO_WORKSPACE_OFFSETS)
1509 1509
   #error "CNC_COORDINATE_SYSTEMS is incompatible with NO_WORKSPACE_OFFSETS."
1510 1510
 #endif
1511
+
1512
+#if !BLOCK_BUFFER_SIZE || !IS_POWER_OF_2(BLOCK_BUFFER_SIZE)
1513
+  #error "BLOCK_BUFFER_SIZE must be a power of 2."
1514
+#endif

+ 1
- 1
Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Anet/A6/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Anet/A8/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h View File

@@ -747,7 +747,7 @@
747 747
 // @section hidden
748 748
 
749 749
 // The number of linear motions that can be in the plan at any give time.
750
-// 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.
750
+// 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.
751 751
 #if ENABLED(SDSUPPORT)
752 752
   #define BLOCK_BUFFER_SIZE 32 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
753 753
 #else

+ 1
- 1
Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Creality/CR-10/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Felix/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/FolgerTech/i3-2020/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Malyan/M150/Configuration_adv.h View File

@@ -747,7 +747,7 @@
747 747
 // @section hidden
748 748
 
749 749
 // The number of linear motions that can be in the plan at any give time.
750
-// 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.
750
+// 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.
751 751
 #if ENABLED(SDSUPPORT)
752 752
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
753 753
 #else

+ 1
- 1
Marlin/example_configurations/Micromake/C1/enhanced/Configuration_adv.h View File

@@ -751,7 +751,7 @@
751 751
 // @section hidden
752 752
 
753 753
 // The number of linear motions that can be in the plan at any give time.
754
-// 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.
754
+// 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.
755 755
 #if ENABLED(SDSUPPORT)
756 756
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
757 757
 #else

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Sanguinololu/Configuration_adv.h View File

@@ -739,7 +739,7 @@
739 739
 // @section hidden
740 740
 
741 741
 // The number of linear motions that can be in the plan at any give time.
742
-// 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.
742
+// 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.
743 743
 #if ENABLED(SDSUPPORT)
744 744
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
745 745
 #else

+ 1
- 1
Marlin/example_configurations/TinyBoy2/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/Velleman/K8200/Configuration_adv.h View File

@@ -758,7 +758,7 @@
758 758
 // @section hidden
759 759
 
760 760
 // The number of linear motions that can be in the plan at any give time.
761
-// 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.
761
+// 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.
762 762
 #if ENABLED(SDSUPPORT)
763 763
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
764 764
 #else

+ 1
- 1
Marlin/example_configurations/Velleman/K8400/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h View File

@@ -752,7 +752,7 @@
752 752
 // @section hidden
753 753
 
754 754
 // The number of linear motions that can be in the plan at any give time.
755
-// 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.
755
+// 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.
756 756
 #if ENABLED(SDSUPPORT)
757 757
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
758 758
 #else

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h View File

@@ -752,7 +752,7 @@
752 752
 // @section hidden
753 753
 
754 754
 // The number of linear motions that can be in the plan at any give time.
755
-// 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.
755
+// 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.
756 756
 #if ENABLED(SDSUPPORT)
757 757
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
758 758
 #else

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h View File

@@ -752,7 +752,7 @@
752 752
 // @section hidden
753 753
 
754 754
 // The number of linear motions that can be in the plan at any give time.
755
-// 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.
755
+// 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.
756 756
 #if ENABLED(SDSUPPORT)
757 757
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
758 758
 #else

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h View File

@@ -752,7 +752,7 @@
752 752
 // @section hidden
753 753
 
754 754
 // The number of linear motions that can be in the plan at any give time.
755
-// 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.
755
+// 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.
756 756
 #if ENABLED(SDSUPPORT)
757 757
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
758 758
 #else

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h View File

@@ -757,7 +757,7 @@
757 757
 // @section hidden
758 758
 
759 759
 // The number of linear motions that can be in the plan at any give time.
760
-// 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.
760
+// 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.
761 761
 #if ENABLED(SDSUPPORT)
762 762
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
763 763
 #else

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h View File

@@ -752,7 +752,7 @@
752 752
 // @section hidden
753 753
 
754 754
 // The number of linear motions that can be in the plan at any give time.
755
-// 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.
755
+// 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.
756 756
 #if ENABLED(SDSUPPORT)
757 757
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
758 758
 #else

+ 1
- 1
Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/makibox/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h View File

@@ -750,7 +750,7 @@
750 750
 // @section hidden
751 751
 
752 752
 // The number of linear motions that can be in the plan at any give time.
753
-// 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.
753
+// 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.
754 754
 #if ENABLED(SDSUPPORT)
755 755
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
756 756
 #else

+ 1
- 1
Marlin/example_configurations/wt150/Configuration_adv.h View File

@@ -740,7 +740,7 @@
740 740
 // @section hidden
741 741
 
742 742
 // The number of linear motions that can be in the plan at any give time.
743
-// 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.
743
+// 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.
744 744
 #if ENABLED(SDSUPPORT)
745 745
   #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
746 746
 #else

Loading…
Cancel
Save