mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-07 23:17:38 -06:00
Sync with bugfix code
This commit is contained in:
parent
90d9867759
commit
985c727e96
331 changed files with 2359 additions and 331 deletions
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -340,7 +353,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -341,7 +354,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -341,7 +354,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
|
@ -39,6 +39,19 @@
|
||||||
//=============================Thermal Settings ============================
|
//=============================Thermal Settings ============================
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thermocouple sensors are quite sensitive to noise. Any noise induced in
|
||||||
|
* the sensor wires, such as by stepper motor wires run in parallel to them,
|
||||||
|
* may result in the thermocouple sensor reporting spurious errors. This
|
||||||
|
* value is the number of errors which can occur in a row before the error
|
||||||
|
* is reported. This allows us to ignore intermittent error conditions while
|
||||||
|
* still detecting an actual failure, which should result in a continuous
|
||||||
|
* stream of errors from the sensor.
|
||||||
|
*
|
||||||
|
* Set this value to 0 to fail on the first error to occur.
|
||||||
|
*/
|
||||||
|
#define THERMOCOUPLE_MAX_ERRORS 15
|
||||||
|
|
||||||
//
|
//
|
||||||
// Custom Thermistor 1000 parameters
|
// Custom Thermistor 1000 parameters
|
||||||
//
|
//
|
||||||
|
@ -336,7 +349,7 @@
|
||||||
*/
|
*/
|
||||||
//#define HOTEND_IDLE_TIMEOUT
|
//#define HOTEND_IDLE_TIMEOUT
|
||||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||||
#define HOTEND_IDLE_DURATION_SEC 5 // (minutes) Time without extruder movement to trigger protection
|
#define HOTEND_IDLE_TIMEOUT_SEC (5*60) // (seconds) Time without extruder movement to trigger protection
|
||||||
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
#define HOTEND_IDLE_MIN_TRIGGER 180 // (°C) Minimum temperature to enable hotend protection
|
||||||
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
#define HOTEND_IDLE_NOZZLE_TARGET 0 // (°C) Safe temperature for the nozzle after timeout
|
||||||
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
#define HOTEND_IDLE_BED_TARGET 0 // (°C) Safe temperature for the bed after timeout
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue