parent
07d7e8aa1b
commit
e65a853c59
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -508,6 +508,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -582,22 +599,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
#define LONG_FILENAME_HOST_SUPPORT
|
#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -496,6 +496,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -570,22 +587,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
#define LONG_FILENAME_HOST_SUPPORT
|
#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
#define LONG_FILENAME_HOST_SUPPORT
|
#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
#define LONG_FILENAME_HOST_SUPPORT
|
#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -508,6 +508,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -582,22 +599,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -520,6 +520,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -594,22 +611,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
#define LONG_FILENAME_HOST_SUPPORT
|
#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -514,6 +514,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -588,22 +605,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -509,6 +509,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -583,22 +600,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -507,6 +507,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -581,22 +598,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
@ -508,6 +508,23 @@
|
|||||||
// Add an 'M73' G-code to set the current percentage
|
// Add an 'M73' G-code to set the current percentage
|
||||||
//#define LCD_SET_PROGRESS_MANUALLY
|
//#define LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
|
#if ENABLED(SDSUPPORT) || ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
||||||
|
// Show a progress bar on HD44780 LCDs for SD printing
|
||||||
|
//#define LCD_PROGRESS_BAR
|
||||||
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
// Amount of time (ms) to show the bar
|
||||||
|
#define PROGRESS_BAR_BAR_TIME 2000
|
||||||
|
// Amount of time (ms) to show the status message
|
||||||
|
#define PROGRESS_BAR_MSG_TIME 3000
|
||||||
|
// Amount of time (ms) to retain the status message (0=forever)
|
||||||
|
#define PROGRESS_MSG_EXPIRE 0
|
||||||
|
// Enable this to show messages for MSG_TIME then hide them
|
||||||
|
//#define PROGRESS_MSG_ONCE
|
||||||
|
// Add a menu item to test the progress bar:
|
||||||
|
//#define LCD_PROGRESS_BAR_TEST
|
||||||
|
#endif
|
||||||
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LED Control Menu
|
* LED Control Menu
|
||||||
* Enable this feature to add LED Control to the LCD menu
|
* Enable this feature to add LED Control to the LCD menu
|
||||||
@ -582,22 +599,6 @@
|
|||||||
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
// Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Show a progress bar on HD44780 LCDs for SD printing
|
|
||||||
//#define LCD_PROGRESS_BAR
|
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
|
||||||
// Amount of time (ms) to show the bar
|
|
||||||
#define PROGRESS_BAR_BAR_TIME 2000
|
|
||||||
// Amount of time (ms) to show the status message
|
|
||||||
#define PROGRESS_BAR_MSG_TIME 3000
|
|
||||||
// Amount of time (ms) to retain the status message (0=forever)
|
|
||||||
#define PROGRESS_MSG_EXPIRE 0
|
|
||||||
// Enable this to show messages for MSG_TIME then hide them
|
|
||||||
//#define PROGRESS_MSG_ONCE
|
|
||||||
// Add a menu item to test the progress bar:
|
|
||||||
//#define LCD_PROGRESS_BAR_TEST
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// This allows hosts to request long names for files and folders with M33
|
// This allows hosts to request long names for files and folders with M33
|
||||||
//#define LONG_FILENAME_HOST_SUPPORT
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user