mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-13 09:48:01 -06:00
XY Freq, Singlenozzle Standby
This commit is contained in:
parent
6efafdfd8b
commit
1abfdab06e
315 changed files with 2945 additions and 740 deletions
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -784,10 +784,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1379,6 +1385,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1882,7 +1889,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -188,6 +188,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -787,10 +787,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1382,6 +1388,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1886,7 +1893,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -188,6 +188,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1885,7 +1892,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -790,10 +790,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1385,6 +1391,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1888,7 +1895,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
#define SINGLENOZZLE
|
#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -158,6 +158,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1389,6 +1395,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1892,7 +1899,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -781,10 +781,16 @@
|
||||||
// If defined the movements slow down when the look ahead buffer is only half full
|
// If defined the movements slow down when the look ahead buffer is only half full
|
||||||
#define SLOWDOWN
|
#define SLOWDOWN
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1376,6 +1382,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1879,7 +1886,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1383,6 +1389,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1886,7 +1893,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1383,6 +1389,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1886,7 +1893,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -785,10 +785,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1380,6 +1386,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1883,7 +1890,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -785,10 +785,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1380,6 +1386,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1883,7 +1890,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -785,10 +785,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1380,6 +1386,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1883,7 +1890,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -159,6 +159,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -784,10 +784,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1380,6 +1386,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1883,7 +1890,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -152,6 +152,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -784,10 +784,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1379,6 +1385,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1882,7 +1889,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
#define XY_FREQUENCY_LIMIT 15 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1880,7 +1887,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,13 @@
|
||||||
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
// For Cyclops or any "multi-extruder" that shares a single nozzle.
|
||||||
//#define SINGLENOZZLE
|
//#define SINGLENOZZLE
|
||||||
|
|
||||||
|
// Save and restore temperature and fan speed on tool-change.
|
||||||
|
// Set standby for the unselected tool with M104/106/109 T...
|
||||||
|
#if ENABLED(SINGLENOZZLE)
|
||||||
|
//#define SINGLENOZZLE_STANDBY_TEMP
|
||||||
|
//#define SINGLENOZZLE_STANDBY_FAN
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
* Průša MK2 Single Nozzle Multi-Material Multiplexer, and variants.
|
||||||
*
|
*
|
||||||
|
|
|
@ -786,10 +786,16 @@
|
||||||
#define SLOWDOWN_DIVISOR 2
|
#define SLOWDOWN_DIVISOR 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Frequency limit
|
/**
|
||||||
// See nophead's blog for more info
|
* XY Frequency limit
|
||||||
// Not working O
|
* Reduce resonance by limiting the frequency of small zigzag infill moves.
|
||||||
//#define XY_FREQUENCY_LIMIT 15
|
* See http://hydraraptor.blogspot.com/2010/12/frequency-limit.html
|
||||||
|
* Use M201 F<freq> G<min%> to change limits at runtime.
|
||||||
|
*/
|
||||||
|
//#define XY_FREQUENCY_LIMIT 10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
|
||||||
|
#ifdef XY_FREQUENCY_LIMIT
|
||||||
|
#define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
||||||
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
||||||
|
@ -1381,6 +1387,7 @@
|
||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
|
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, FYSETC Cheetah and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@
|
||||||
// (May break filament if not retracted beforehand.)
|
// (May break filament if not retracted beforehand.)
|
||||||
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
|
||||||
|
|
||||||
// Prime on the first T command even if the same or no toolchange / swap
|
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
|
||||||
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
|
||||||
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue