parent
34be5d33c0
commit
2cdde08339
@ -1162,4 +1162,20 @@
|
|||||||
#define NOT_A_PIN 0 // For PINS_DEBUGGING
|
#define NOT_A_PIN 0 // For PINS_DEBUGGING
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Force SDCARD_SORT_ALPHA to be enabled for Graphical LCD on LPC1768
|
||||||
|
// because of a bug in the shared SPI implementation. (See #8122)
|
||||||
|
#if defined(TARGET_LPC1768) && ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
||||||
|
#define SDCARD_SORT_ALPHA // Keeps one directory level in RAM. Changing
|
||||||
|
// directory levels still glitches the screen,
|
||||||
|
// but the following LCD update cleans it up.
|
||||||
|
#undef SDSORT_LIMIT
|
||||||
|
#undef SDSORT_USES_RAM
|
||||||
|
#undef SDSORT_USES_STACK
|
||||||
|
#undef SDSORT_CACHE_NAMES
|
||||||
|
#define SDSORT_LIMIT 256 // Maximum number of sorted items (10-256). Costs 27 bytes each.
|
||||||
|
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
|
||||||
|
#define SDSORT_USES_STACK false // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
|
||||||
|
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // CONDITIONALS_POST_H
|
#endif // CONDITIONALS_POST_H
|
||||||
|
@ -3775,9 +3775,8 @@ void kill_screen(const char* lcd_msg) {
|
|||||||
void lcd_sdcard_menu() {
|
void lcd_sdcard_menu() {
|
||||||
ENCODER_DIRECTION_MENUS();
|
ENCODER_DIRECTION_MENUS();
|
||||||
|
|
||||||
const uint16_t fileCnt = card.get_num_Files(); // Only access SD card if sort not active
|
const uint16_t fileCnt = card.get_num_Files();
|
||||||
// This minimizes garbage on RepRap Discount Full Graphics Smart Controller
|
|
||||||
// when using the Re-ARM card.
|
|
||||||
START_MENU();
|
START_MENU();
|
||||||
MENU_BACK(MSG_MAIN);
|
MENU_BACK(MSG_MAIN);
|
||||||
card.getWorkDirName();
|
card.getWorkDirName();
|
||||||
|
@ -112,25 +112,6 @@
|
|||||||
#define ENET_TXD0 P1_0
|
#define ENET_TXD0 P1_0
|
||||||
#define ENET_TXD1 P1_1
|
#define ENET_TXD1 P1_1
|
||||||
|
|
||||||
|
|
||||||
#if (ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && !defined(SDCARD_SORT_ALPHA)) // needed because of shared SPI
|
|
||||||
#define SDCARD_SORT_ALPHA // Using SORT feature to keep one directory level in RAM
|
|
||||||
// When going up/down directory levels the SD card is
|
|
||||||
// accessed but the garbage/lines are removed when the
|
|
||||||
// LCD updates
|
|
||||||
|
|
||||||
#define SDSORT_LIMIT 256 // Maximum number of sorted items (10-256). Costs 27 bytes each.
|
|
||||||
#define FOLDER_SORTING -1 // -1=above 0=none 1=below
|
|
||||||
#define SDSORT_GCODE false // Allow turning sorting on/off with LCD and M34 g-code.
|
|
||||||
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
|
|
||||||
#define SDSORT_USES_STACK false // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
|
|
||||||
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
|
|
||||||
#define SDSORT_DYNAMIC_RAM false // Use dynamic allocation (within SD menus). Least expensive option. Set SDSORT_LIMIT before use!
|
|
||||||
#define SDSORT_CACHE_VFATS 2 // Maximum number of 13-byte VFAT entries to use for sorting.
|
|
||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
|
||||||
#define MAX_VFAT_ENTRIES SDSORT_CACHE_VFATS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PWMs
|
* PWMs
|
||||||
*
|
*
|
||||||
|
@ -174,25 +174,6 @@
|
|||||||
#define ENET_TXD0 P1_0 // J12-11
|
#define ENET_TXD0 P1_0 // J12-11
|
||||||
#define ENET_TXD1 P1_1 // J12-12
|
#define ENET_TXD1 P1_1 // J12-12
|
||||||
|
|
||||||
|
|
||||||
#if (ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && !defined(SDCARD_SORT_ALPHA)) // needed because of shared SPI
|
|
||||||
#define SDCARD_SORT_ALPHA // Using SORT feature to keep one directory level in RAM
|
|
||||||
// When going up/down directory levels the SD card is
|
|
||||||
// accessed but the garbage/lines are removed when the
|
|
||||||
// LCD updates
|
|
||||||
|
|
||||||
#define SDSORT_LIMIT 256 // Maximum number of sorted items (10-256). Costs 27 bytes each.
|
|
||||||
#define FOLDER_SORTING -1 // -1=above 0=none 1=below
|
|
||||||
#define SDSORT_GCODE false // Allow turning sorting on/off with LCD and M34 g-code.
|
|
||||||
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
|
|
||||||
#define SDSORT_USES_STACK false // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
|
|
||||||
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
|
|
||||||
#define SDSORT_DYNAMIC_RAM false // Use dynamic allocation (within SD menus). Least expensive option. Set SDSORT_LIMIT before use!
|
|
||||||
#define SDSORT_CACHE_VFATS 2 // Maximum number of 13-byte VFAT entries to use for sorting.
|
|
||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
|
||||||
#define MAX_VFAT_ENTRIES SDSORT_CACHE_VFATS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PWMs
|
* PWMs
|
||||||
*
|
*
|
||||||
|
@ -259,24 +259,6 @@
|
|||||||
//#define SHIFT_EN P1_22 // J5-4 & AUX-4
|
//#define SHIFT_EN P1_22 // J5-4 & AUX-4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && !defined(SDCARD_SORT_ALPHA)) // needed because of shared SPI
|
|
||||||
#define SDCARD_SORT_ALPHA // Using SORT feature to keep one directory level in RAM
|
|
||||||
// When going up/down directory levels the SD card is
|
|
||||||
// accessed but the garbage/lines are removed when the
|
|
||||||
// LCD updates
|
|
||||||
|
|
||||||
#define SDSORT_LIMIT 256 // Maximum number of sorted items (10-256). Costs 27 bytes each.
|
|
||||||
#define FOLDER_SORTING -1 // -1=above 0=none 1=below
|
|
||||||
#define SDSORT_GCODE false // Allow turning sorting on/off with LCD and M34 g-code.
|
|
||||||
#define SDSORT_USES_RAM true // Pre-allocate a static array for faster pre-sorting.
|
|
||||||
#define SDSORT_USES_STACK false // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
|
|
||||||
#define SDSORT_CACHE_NAMES true // Keep sorted items in RAM longer for speedy performance. Most expensive option.
|
|
||||||
#define SDSORT_DYNAMIC_RAM false // Use dynamic allocation (within SD menus). Least expensive option. Set SDSORT_LIMIT before use!
|
|
||||||
#define SDSORT_CACHE_VFATS 2 // Maximum number of 13-byte VFAT entries to use for sorting.
|
|
||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
|
||||||
#define MAX_VFAT_ENTRIES SDSORT_CACHE_VFATS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
||||||
// #define LCD_SCREEN_ROT_180
|
// #define LCD_SCREEN_ROT_180
|
||||||
|
|
||||||
|
@ -134,9 +134,7 @@
|
|||||||
#define FILENAME_LENGTH 13 // Number of UTF-16 characters per entry
|
#define FILENAME_LENGTH 13 // Number of UTF-16 characters per entry
|
||||||
|
|
||||||
// Number of VFAT entries used. Each entry has 13 UTF-16 characters
|
// Number of VFAT entries used. Each entry has 13 UTF-16 characters
|
||||||
#ifdef MAX_VFAT_ENTRIES
|
|
||||||
#undef MAX_VFAT_ENTRIES
|
#undef MAX_VFAT_ENTRIES
|
||||||
#endif
|
|
||||||
#if ENABLED(SCROLL_LONG_FILENAMES)
|
#if ENABLED(SCROLL_LONG_FILENAMES)
|
||||||
#define MAX_VFAT_ENTRIES (5)
|
#define MAX_VFAT_ENTRIES (5)
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user