lower the maximum hotend temperature to stay within the thermistor range
The default thermistor type 1 supports a maximum value of 300°C. The maximum heater temperature plus overshoot value must stay within that range. For all targets but 4MAXP2 we use type 1 with a default overshoot value of 15°C, so let's lower the maximum heater temperature to 285.
This commit is contained in:
@@ -740,7 +740,11 @@
|
||||
// Above this temperature the heater will be switched off.
|
||||
// This can protect components from overheating, but NOT from shorts and failures.
|
||||
// (Use MINTEMP for thermistor short/failure protection.)
|
||||
#define HEATER_0_MAXTEMP 300
|
||||
#if ENABLED(KNUTWURST_4MAXP2)
|
||||
#define HEATER_0_MAXTEMP 300
|
||||
#else
|
||||
#define HEATER_0_MAXTEMP 285
|
||||
#endif
|
||||
#define HEATER_1_MAXTEMP 275
|
||||
#define HEATER_2_MAXTEMP 275
|
||||
#define HEATER_3_MAXTEMP 275
|
||||
|
Reference in New Issue
Block a user