Fix comments in Configuration_adv.h
This commit is contained in:
parent
26168676e7
commit
e08915a723
16 changed files with 272 additions and 320 deletions
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -53,22 +53,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 60 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 60 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 8 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 8 // Degrees Celsius
|
||||||
|
@ -86,11 +83,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 3000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 3000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 120 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 120 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -52,22 +52,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -85,11 +82,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
|
@ -47,22 +47,19 @@
|
||||||
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
#define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters
|
* Thermal Protection protects your printer from damage and fire if a
|
||||||
|
* thermistor falls out or temperature sensors fail in any way.
|
||||||
|
*
|
||||||
|
* The issue: If a thermistor falls out or a temperature sensor fails,
|
||||||
|
* Marlin can no longer sense the actual temperature. Since a disconnected
|
||||||
|
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
||||||
|
*
|
||||||
|
* The solution: Once the temperature reaches the target, start observing.
|
||||||
|
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
||||||
|
* the firmware will halt the machine as a safety precaution.
|
||||||
|
*
|
||||||
|
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Thermal Protection protects your printer from damage and fire if a
|
|
||||||
* thermistor falls out or temperature sensors fail in any way.
|
|
||||||
*
|
|
||||||
* The issue: If a thermistor falls out or a temperature sensor fails,
|
|
||||||
* Marlin can no longer sense the actual temperature. Since a disconnected
|
|
||||||
* thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
||||||
*
|
|
||||||
* The solution: Once the temperature reaches the target, start observing.
|
|
||||||
* If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
||||||
* the firmware will halt the machine as a safety precaution.
|
|
||||||
*
|
|
||||||
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
||||||
*/
|
|
||||||
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
||||||
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
||||||
|
@ -80,11 +77,11 @@
|
||||||
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thermal Protection parameters for the bed
|
* Thermal Protection parameters for the bed
|
||||||
* are like the above for the hotends.
|
* are like the above for the hotends.
|
||||||
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
* WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
|
||||||
*/
|
*/
|
||||||
#if ENABLED(THERMAL_PROTECTION_BED)
|
#if ENABLED(THERMAL_PROTECTION_BED)
|
||||||
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
||||||
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
||||||
|
|
Reference in a new issue