Selaa lähdekoodia

Add size note to SDSORT_LIMIT

Scott Lahteine 7 vuotta sitten
vanhempi
commit
cd09a83cfa
28 muutettua tiedostoa jossa 31 lisäystä ja 31 poistoa
  1. 1
    1
      Marlin/Configuration_adv.h
  2. 1
    1
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h
  3. 1
    1
      Marlin/example_configurations/Anet/A6/Configuration_adv.h
  4. 1
    1
      Marlin/example_configurations/Anet/A8/Configuration_adv.h
  5. 1
    1
      Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h
  6. 1
    1
      Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h
  7. 1
    1
      Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h
  8. 1
    1
      Marlin/example_configurations/Cartesio/Configuration_adv.h
  9. 1
    1
      Marlin/example_configurations/Felix/Configuration_adv.h
  10. 1
    1
      Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h
  11. 1
    1
      Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h
  12. 1
    1
      Marlin/example_configurations/Malyan/M150/Configuration_adv.h
  13. 1
    1
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  14. 1
    1
      Marlin/example_configurations/SCARA/Configuration_adv.h
  15. 1
    1
      Marlin/example_configurations/Sanguinololu/Configuration_adv.h
  16. 1
    1
      Marlin/example_configurations/TinyBoy2/Configuration_adv.h
  17. 1
    1
      Marlin/example_configurations/Velleman/K8200/Configuration_adv.h
  18. 1
    1
      Marlin/example_configurations/Velleman/K8400/Configuration_adv.h
  19. 1
    1
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h
  20. 1
    1
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h
  21. 1
    1
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  22. 1
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  23. 1
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  24. 1
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  25. 4
    4
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h
  26. 1
    1
      Marlin/example_configurations/makibox/Configuration_adv.h
  27. 1
    1
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
  28. 1
    1
      Marlin/example_configurations/wt150/Configuration_adv.h

+ 1
- 1
Marlin/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Anet/A6/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Anet/A8/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Felix/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Malyan/M150/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Sanguinololu/Configuration_adv.h Näytä tiedosto

499
 
499
 
500
   // SD Card Sorting options
500
   // SD Card Sorting options
501
   #if ENABLED(SDCARD_SORT_ALPHA)
501
   #if ENABLED(SDCARD_SORT_ALPHA)
502
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
502
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
503
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
503
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
504
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
504
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
505
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
505
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/TinyBoy2/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Velleman/K8200/Configuration_adv.h Näytä tiedosto

523
 
523
 
524
   // SD Card Sorting options
524
   // SD Card Sorting options
525
   #if ENABLED(SDCARD_SORT_ALPHA)
525
   #if ENABLED(SDCARD_SORT_ALPHA)
526
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
526
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
527
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
527
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
528
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
528
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
529
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
529
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/Velleman/K8400/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h Näytä tiedosto

512
 
512
 
513
   // SD Card Sorting options
513
   // SD Card Sorting options
514
   #if ENABLED(SDCARD_SORT_ALPHA)
514
   #if ENABLED(SDCARD_SORT_ALPHA)
515
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
515
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h Näytä tiedosto

512
 
512
 
513
   // SD Card Sorting options
513
   // SD Card Sorting options
514
   #if ENABLED(SDCARD_SORT_ALPHA)
514
   #if ENABLED(SDCARD_SORT_ALPHA)
515
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
515
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h Näytä tiedosto

512
 
512
 
513
   // SD Card Sorting options
513
   // SD Card Sorting options
514
   #if ENABLED(SDCARD_SORT_ALPHA)
514
   #if ENABLED(SDCARD_SORT_ALPHA)
515
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
515
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h Näytä tiedosto

512
 
512
 
513
   // SD Card Sorting options
513
   // SD Card Sorting options
514
   #if ENABLED(SDCARD_SORT_ALPHA)
514
   #if ENABLED(SDCARD_SORT_ALPHA)
515
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
515
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h Näytä tiedosto

517
 
517
 
518
   // SD Card Sorting options
518
   // SD Card Sorting options
519
   #if ENABLED(SDCARD_SORT_ALPHA)
519
   #if ENABLED(SDCARD_SORT_ALPHA)
520
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
520
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
521
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
521
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
522
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
522
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
523
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
523
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h Näytä tiedosto

512
 
512
 
513
   // SD Card Sorting options
513
   // SD Card Sorting options
514
   #if ENABLED(SDCARD_SORT_ALPHA)
514
   #if ENABLED(SDCARD_SORT_ALPHA)
515
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
515
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
516
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
517
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
518
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 4
- 4
Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
1396
 
1396
 
1397
 #define MAX7219_DEBUG
1397
 #define MAX7219_DEBUG
1398
 #if ENABLED(MAX7219_DEBUG)
1398
 #if ENABLED(MAX7219_DEBUG)
1399
-  #define MAX7219_CLK_PIN   64  // 77 on Re-ARM       // Configuration of the 3 pins to control the display 
1400
-  #define MAX7219_DIN_PIN 57  // 78 on Re-ARM
1401
-  #define MAX7219_LOAD_PIN    44  // 79 on Re-ARM
1399
+  #define MAX7219_CLK_PIN   64  // 77 on Re-ARM       // Configuration of the 3 pins to control the display
1400
+  #define MAX7219_DIN_PIN   57  // 78 on Re-ARM
1401
+  #define MAX7219_LOAD_PIN  44  // 79 on Re-ARM
1402
 
1402
 
1403
   /**
1403
   /**
1404
    * Sample debug features
1404
    * Sample debug features

+ 1
- 1
Marlin/example_configurations/makibox/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

+ 1
- 1
Marlin/example_configurations/wt150/Configuration_adv.h Näytä tiedosto

510
 
510
 
511
   // SD Card Sorting options
511
   // SD Card Sorting options
512
   #if ENABLED(SDCARD_SORT_ALPHA)
512
   #if ENABLED(SDCARD_SORT_ALPHA)
513
-    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256).
513
+    #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
514
     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
515
     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 g-code.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
516
     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.

Loading…
Peruuta
Tallenna