Correct Kossel Pro Configuration_adv (PR#2473)
This commit is contained in:
parent
000a6fce46
commit
b80a6a8d31
|
@ -19,16 +19,11 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Heating Sanity Check
|
* Thermal Protection parameters
|
||||||
*
|
|
||||||
* Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
|
|
||||||
* and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
|
|
||||||
* hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
|
|
||||||
* by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
|
|
||||||
*/
|
*/
|
||||||
#ifdef THERMAL_RUNAWAY_PROTECTION_HOTENDS
|
#ifdef THERMAL_PROTECTION_HOTENDS
|
||||||
#define THERMAL_RUNAWAY_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_RUNAWAY_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whenever an M104 or M109 increases the target temperature the firmware will wait for the
|
* Whenever an M104 or M109 increases the target temperature the firmware will wait for the
|
||||||
|
@ -40,9 +35,9 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef THERMAL_RUNAWAY_PROTECTION_BED
|
#ifdef THERMAL_PROTECTION_BED
|
||||||
#define THERMAL_RUNAWAY_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_RUNAWAY_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef PIDTEMP
|
#ifdef PIDTEMP
|
||||||
|
@ -54,14 +49,16 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
//automatic temperature: The hot end target temperature is calculated by all the buffered lines of gcode.
|
* Automatic Temperature:
|
||||||
//The maximum buffered steps/sec of the extruder motor are called "se".
|
* The hotend target temperature is calculated by all the buffered lines of gcode.
|
||||||
//You enter the autotemp mode by a M109 S<mintemp> B<maxtemp> F<factor>
|
* The maximum buffered steps/sec of the extruder motor is called "se".
|
||||||
// the target temperature is set to mintemp+factor*se[steps/sec] and limited by mintemp and maxtemp
|
* Start autotemp mode with M109 S<mintemp> B<maxtemp> F<factor>
|
||||||
// you exit the value by any M109 without F*
|
* The target temperature is set to mintemp+factor*se[steps/sec] and is limited by
|
||||||
// Also, if the temperature is set to a value <mintemp, it is not changed by autotemp.
|
* mintemp and maxtemp. Turn this off by excuting M109 without F*
|
||||||
// on an Ultimaker, some initial testing worked with M109 S215 B260 F1 in the start.gcode
|
* Also, if the temperature is set to a value below mintemp, it will not be changed by autotemp.
|
||||||
|
* On an Ultimaker, some initial testing worked with M109 S215 B260 F1 in the start.gcode
|
||||||
|
*/
|
||||||
#define AUTOTEMP
|
#define AUTOTEMP
|
||||||
#ifdef AUTOTEMP
|
#ifdef AUTOTEMP
|
||||||
#define AUTOTEMP_OLDWEIGHT 0.98
|
#define AUTOTEMP_OLDWEIGHT 0.98
|
||||||
|
@ -101,6 +98,11 @@
|
||||||
// before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
|
// before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
|
||||||
//#define FAN_KICKSTART_TIME 100
|
//#define FAN_KICKSTART_TIME 100
|
||||||
|
|
||||||
|
// This defines the minimal speed for the main fan, run in PWM mode
|
||||||
|
// to enable uncomment and set minimal PWM speed for reliable running (1-255)
|
||||||
|
// if fan speed is [1 - (FAN_MIN_PWM-1)] it is set to FAN_MIN_PWM
|
||||||
|
//#define FAN_MIN_PWM 50
|
||||||
|
|
||||||
// @section extruder
|
// @section extruder
|
||||||
|
|
||||||
// Extruder cooling fans
|
// Extruder cooling fans
|
||||||
|
@ -366,6 +368,9 @@
|
||||||
//#define PROGRESS_MSG_ONCE
|
//#define PROGRESS_MSG_ONCE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// This allows hosts to request long names for files and folders with M33
|
||||||
|
//#define LONG_FILENAME_HOST_SUPPORT
|
||||||
|
|
||||||
#endif // SDSUPPORT
|
#endif // SDSUPPORT
|
||||||
|
|
||||||
// for dogm lcd displays you can choose some additional fonts:
|
// for dogm lcd displays you can choose some additional fonts:
|
||||||
|
|
Loading…
Reference in a new issue