Merge pull request #2470 from leptun/MK3_Adjusted_mintemp
Adjusted hotend, bed and Ambient mintemp values
This commit is contained in:
commit
a10b7f3963
2 changed files with 8 additions and 8 deletions
Firmware/variants
|
@ -151,8 +151,8 @@
|
||||||
// this value is litlebit higher that real limit, because ambient termistor is on the board and is temperated from it,
|
// this value is litlebit higher that real limit, because ambient termistor is on the board and is temperated from it,
|
||||||
// temperature inside the case is around 31C for ambient temperature 25C, when the printer is powered on long time and idle
|
// temperature inside the case is around 31C for ambient temperature 25C, when the printer is powered on long time and idle
|
||||||
// the real limit is 15C (same as MINTEMP limit), this is because 15C is end of scale for both used thermistors (bed, heater)
|
// the real limit is 15C (same as MINTEMP limit), this is because 15C is end of scale for both used thermistors (bed, heater)
|
||||||
#define MINTEMP_MINAMBIENT 25
|
#define MINTEMP_MINAMBIENT 10
|
||||||
#define MINTEMP_MINAMBIENT_RAW 978
|
#define MINTEMP_MINAMBIENT_RAW 1002
|
||||||
|
|
||||||
#define DEBUG_DCODE3
|
#define DEBUG_DCODE3
|
||||||
|
|
||||||
|
@ -282,14 +282,14 @@
|
||||||
*------------------------------------*/
|
*------------------------------------*/
|
||||||
|
|
||||||
// Mintemps
|
// Mintemps
|
||||||
#define HEATER_0_MINTEMP 15
|
#define HEATER_0_MINTEMP 10
|
||||||
#define HEATER_1_MINTEMP 5
|
#define HEATER_1_MINTEMP 5
|
||||||
#define HEATER_2_MINTEMP 5
|
#define HEATER_2_MINTEMP 5
|
||||||
#define HEATER_MINTEMP_DELAY 15000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
#define HEATER_MINTEMP_DELAY 15000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
||||||
#if HEATER_MINTEMP_DELAY>USHRT_MAX
|
#if HEATER_MINTEMP_DELAY>USHRT_MAX
|
||||||
#error "Check maximal allowed value @ ShortTimer (see HEATER_MINTEMP_DELAY definition)"
|
#error "Check maximal allowed value @ ShortTimer (see HEATER_MINTEMP_DELAY definition)"
|
||||||
#endif
|
#endif
|
||||||
#define BED_MINTEMP 15
|
#define BED_MINTEMP 10
|
||||||
#define BED_MINTEMP_DELAY 50000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
#define BED_MINTEMP_DELAY 50000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
||||||
#if BED_MINTEMP_DELAY>USHRT_MAX
|
#if BED_MINTEMP_DELAY>USHRT_MAX
|
||||||
#error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)"
|
#error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)"
|
||||||
|
|
|
@ -153,8 +153,8 @@
|
||||||
// this value is litlebit higher that real limit, because ambient termistor is on the board and is temperated from it,
|
// this value is litlebit higher that real limit, because ambient termistor is on the board and is temperated from it,
|
||||||
// temperature inside the case is around 31C for ambient temperature 25C, when the printer is powered on long time and idle
|
// temperature inside the case is around 31C for ambient temperature 25C, when the printer is powered on long time and idle
|
||||||
// the real limit is 15C (same as MINTEMP limit), this is because 15C is end of scale for both used thermistors (bed, heater)
|
// the real limit is 15C (same as MINTEMP limit), this is because 15C is end of scale for both used thermistors (bed, heater)
|
||||||
#define MINTEMP_MINAMBIENT 25
|
#define MINTEMP_MINAMBIENT 10
|
||||||
#define MINTEMP_MINAMBIENT_RAW 978
|
#define MINTEMP_MINAMBIENT_RAW 1002
|
||||||
|
|
||||||
#define DEBUG_DCODE3
|
#define DEBUG_DCODE3
|
||||||
|
|
||||||
|
@ -284,14 +284,14 @@
|
||||||
*------------------------------------*/
|
*------------------------------------*/
|
||||||
|
|
||||||
// Mintemps
|
// Mintemps
|
||||||
#define HEATER_0_MINTEMP 15
|
#define HEATER_0_MINTEMP 10
|
||||||
#define HEATER_1_MINTEMP 5
|
#define HEATER_1_MINTEMP 5
|
||||||
#define HEATER_2_MINTEMP 5
|
#define HEATER_2_MINTEMP 5
|
||||||
#define HEATER_MINTEMP_DELAY 15000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
#define HEATER_MINTEMP_DELAY 15000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
||||||
#if HEATER_MINTEMP_DELAY>USHRT_MAX
|
#if HEATER_MINTEMP_DELAY>USHRT_MAX
|
||||||
#error "Check maximal allowed value @ ShortTimer (see HEATER_MINTEMP_DELAY definition)"
|
#error "Check maximal allowed value @ ShortTimer (see HEATER_MINTEMP_DELAY definition)"
|
||||||
#endif
|
#endif
|
||||||
#define BED_MINTEMP 15
|
#define BED_MINTEMP 10
|
||||||
#define BED_MINTEMP_DELAY 50000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
#define BED_MINTEMP_DELAY 50000 // [ms] ! if changed, check maximal allowed value @ ShortTimer
|
||||||
#if BED_MINTEMP_DELAY>USHRT_MAX
|
#if BED_MINTEMP_DELAY>USHRT_MAX
|
||||||
#error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)"
|
#error "Check maximal allowed value @ ShortTimer (see BED_MINTEMP_DELAY definition)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue