Skip to content

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+224
-52
lines changed
 

‎Marlin/Configuration.h

+1
Original file line numberDiff line numberDiff line change
@@ -1446,6 +1446,7 @@
14461446
//#define EEPROM_SETTINGS // Persistent storage with M500 and M501
14471447
//#define DISABLE_M503 // Saves ~2700 bytes of PROGMEM. Disable for release!
14481448
#define EEPROM_CHITCHAT // Give feedback on EEPROM commands. Disable to save PROGMEM.
1449+
#define EEPROM_BOOT_SILENT // Keep M503 quiet and only give errors during first load
14491450
#if ENABLED(EEPROM_SETTINGS)
14501451
//#define EEPROM_AUTO_INIT // Init EEPROM automatically on any errors.
14511452
#endif

‎Marlin/Configuration_adv.h

+7-3
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,12 @@
753753
// Minimum time that a segment needs to take if the buffer is emptied
754754
#define DEFAULT_MINSEGMENTTIME 20000 // (ms)
755755

756-
// If defined the movements slow down when the look ahead buffer is only half full
756+
// Slow down the machine if the look ahead buffer is (by default) half full.
757+
// Increase the slowdown divisor for larger buffer sizes.
757758
#define SLOWDOWN
759+
#if ENABLED(SLOWDOWN)
760+
#define SLOWDOWN_DIVISOR 2
761+
#endif
758762

759763
// Frequency limit
760764
// See nophead's blog for more info
@@ -999,7 +1003,7 @@
9991003
#define BOOTSCREEN_TIMEOUT 4000 // (ms) Total Duration to display the boot screen(s)
10001004
#endif
10011005

1002-
#if HAS_GRAPHICAL_LCD && HAS_PRINT_PROGRESS
1006+
#if HAS_GRAPHICAL_LCD && EITHER(SDSUPPORT, LCD_SET_PROGRESS_MANUALLY)
10031007
//#define PRINT_PROGRESS_SHOW_DECIMALS // Show progress with decimal digits
10041008
//#define SHOW_REMAINING_TIME // Display estimated time to completion
10051009
#if ENABLED(SHOW_REMAINING_TIME)
@@ -1008,7 +1012,7 @@
10081012
#endif
10091013
#endif
10101014

1011-
#if HAS_CHARACTER_LCD && HAS_PRINT_PROGRESS
1015+
#if HAS_CHARACTER_LCD && EITHER(SDSUPPORT, LCD_SET_PROGRESS_MANUALLY)
10121016
//#define LCD_PROGRESS_BAR // Show a progress bar on HD44780 LCDs for SD printing
10131017
#if ENABLED(LCD_PROGRESS_BAR)
10141018
#define PROGRESS_BAR_BAR_TIME 2000 // (ms) Amount of time to show the bar

0 commit comments

Comments
 (0)
Please sign in to comment.