Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2017-11-18 12:36:06 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-11-18 12:36:26 +0300
commite6b7c01e1f0afaac7a6478a6f3634b619f3bc734 (patch)
treea7d0cf6a2444776910aca66da0c8e212e6e32cfc /src/Configuration.h
parent377154d0eafd289ca2b4548002250c3be0341ab4 (diff)
Version 1.20beta8
New features: T R1 activates the tool that was active at the last pause M915 R2 and R3 actions are now implemented Extruder heater PWM values are now compensated for supply voltage Duet WiFi only: M587 and M589 without parameters now report the IP addresses etc. as well as the SSID (needs DuetWiFiServer 1.20beta9) When sensorless homing is used on a CoreXY printer, both X and Y motors are monitored for stalling when homing X or Y. Similarly for CoreXYU (both X and Y or U and V are monitored). When using a segmented kinematics such as SCARA, or when long moves are segmented due to mesh bed compensation, segmented moves can be paused between segments M562 with no parameters now clears all heater faults New debugging module 14 added to report debugging message from the WiFi module to USB. Use M111 S1 P14 to activate it. Under voltage and over voltage events are now logged Overheating drivers are now logged M81 power off commands are now logged Bug fixes: Workaround for SX1509B chip problem: if an analog write was performed to a pin on an SX1509B device, subsequent digital writes and pinMode calls didn't work When a print was resumed after power failure, the amount of extrusion during the initial partial move was incorrect
Diffstat (limited to 'src/Configuration.h')
-rw-r--r--src/Configuration.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Configuration.h b/src/Configuration.h
index c6b9754f..d75c50d7 100644
--- a/src/Configuration.h
+++ b/src/Configuration.h
@@ -71,11 +71,12 @@ constexpr float HOT_ENOUGH_TO_RETRACT = 90.0; // Celsius
constexpr uint8_t MAX_BAD_TEMPERATURE_COUNT = 4; // Number of bad temperature samples permitted before a heater fault is reported
constexpr float BAD_LOW_TEMPERATURE = -10.0; // Celsius
-constexpr float DefaultExtruderTemperatureLimit = 288.0; // Celsius - E3D say to tighten the hot end at 285C
+constexpr float DefaultExtruderTemperatureLimit = 290.0; // Celsius - E3D say to tighten the hot end at 285C
constexpr float DefaultBedTemperatureLimit = 125.0; // Celsius
constexpr float HOT_END_FAN_TEMPERATURE = 45.0; // Temperature at which a thermostatic hot end fan comes on
constexpr float ThermostatHysteresis = 1.0; // How much hysteresis we use to prevent noise turning fans on/off too often
constexpr float BAD_ERROR_TEMPERATURE = 2000.0; // Must exceed any reasonable 5temperature limit including DEFAULT_TEMPERATURE_LIMIT
+constexpr uint32_t DefaultHeaterFaultTimeout = 10 * 60 * 1000; // How long we wait (in milliseconds) for user intervention after a heater fault before shutting down
// Heating model default parameters. For the chamber heater, we use the same values as for the bed heater.
// These parameters are about right for an E3Dv6 hot end with 30W heater.