Sanity checks for FILAMENT_CHANGE_FEATURE and FILAMENT_RUNOUT_SCRIPT
This commit is contained in:
parent
5ab7b91615
commit
4061fca1ad
14 changed files with 424 additions and 353 deletions
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -244,15 +244,21 @@
|
||||||
#error "FILAMENT_RUNOUT_SENSOR requires FIL_RUNOUT_PIN."
|
#error "FILAMENT_RUNOUT_SENSOR requires FIL_RUNOUT_PIN."
|
||||||
#elif DISABLED(SDSUPPORT) && DISABLED(PRINTJOB_TIMER_AUTOSTART)
|
#elif DISABLED(SDSUPPORT) && DISABLED(PRINTJOB_TIMER_AUTOSTART)
|
||||||
#error "FILAMENT_RUNOUT_SENSOR requires SDSUPPORT or PRINTJOB_TIMER_AUTOSTART."
|
#error "FILAMENT_RUNOUT_SENSOR requires SDSUPPORT or PRINTJOB_TIMER_AUTOSTART."
|
||||||
|
#elif DISABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
|
static_assert(NULL == strstr(FILAMENT_RUNOUT_SCRIPT, "M600"), "FILAMENT_CHANGE_FEATURE is required to use M600 with FILAMENT_RUNOUT_SENSOR.");
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filament Change with Extruder Runout Prevention
|
* Filament Change with Extruder Runout Prevention
|
||||||
*/
|
*/
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE) && ENABLED(EXTRUDER_RUNOUT_PREVENT)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
|
#if DISABLED(ULTIPANEL)
|
||||||
|
#error "FILAMENT_CHANGE_FEATURE currently requires an LCD controller."
|
||||||
|
#elif ENABLED(EXTRUDER_RUNOUT_PREVENT)
|
||||||
#error "EXTRUDER_RUNOUT_PREVENT is incompatible with FILAMENT_CHANGE_FEATURE."
|
#error "EXTRUDER_RUNOUT_PREVENT is incompatible with FILAMENT_CHANGE_FEATURE."
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Individual axis homing is useless for DELTAS
|
* Individual axis homing is useless for DELTAS
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -642,9 +642,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -669,7 +675,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -661,9 +661,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -688,7 +694,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -661,9 +661,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -688,7 +694,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -666,9 +666,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -693,7 +699,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -661,9 +661,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -688,7 +694,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
|
@ -659,9 +659,15 @@
|
||||||
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
#define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Add support for experimental filament exchange support M600; requires display
|
/**
|
||||||
#if ENABLED(ULTIPANEL)
|
* Filament Change
|
||||||
// #define FILAMENT_CHANGE_FEATURE // Enable filament exchange menu and M600 g-code (used for runout sensor too)
|
* Experimental filament change support.
|
||||||
|
* Adds the GCode M600 for initiating filament change.
|
||||||
|
*
|
||||||
|
* Requires an LCD display.
|
||||||
|
* This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
|
||||||
|
*/
|
||||||
|
//#define FILAMENT_CHANGE_FEATURE
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
||||||
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
#define FILAMENT_CHANGE_X_POS 3 // X position of hotend
|
||||||
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
#define FILAMENT_CHANGE_Y_POS 3 // Y position of hotend
|
||||||
|
@ -686,7 +692,6 @@
|
||||||
// or until outcoming filament color is not clear for filament color change
|
// or until outcoming filament color is not clear for filament color change
|
||||||
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
#define FILAMENT_CHANGE_EXTRUDE_FEEDRATE 3 // Extrude filament feedrate in mm/s - must be slower than load feedrate
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
* enable this section if you have TMC26X motor drivers.
|
* enable this section if you have TMC26X motor drivers.
|
||||||
|
|
Reference in a new issue