mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Sanity checks for FILAMENT_CHANGE_FEATURE and FILAMENT_RUNOUT_SCRIPT
This commit is contained in:
parent
5ab7b91615
commit
4061fca1ad
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -244,14 +244,20 @@
|
|||||||
#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
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -642,10 +642,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -668,7 +674,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -661,10 +661,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -687,7 +693,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -661,10 +661,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -687,7 +693,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -666,10 +666,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -692,7 +698,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -661,10 +661,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -687,7 +693,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
@ -659,10 +659,16 @@
|
|||||||
#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.
|
||||||
#if ENABLED(FILAMENT_CHANGE_FEATURE)
|
* 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)
|
||||||
#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
|
||||||
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
#define FILAMENT_CHANGE_Z_ADD 10 // Z addition of hotend (lift)
|
||||||
@ -685,7 +691,6 @@
|
|||||||
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
// Filament can be extruded repeatedly from the filament exchange menu to fill the hotend,
|
||||||
// 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
|
||||||
|
|
||||||
/******************************************************************************\
|
/******************************************************************************\
|
||||||
|
Loading…
Reference in New Issue
Block a user