From 067c662510309a3c1841921d2c01e408d6311da4 Mon Sep 17 00:00:00 2001 From: "Lawrence Leung larryleungcal@yahoo.com" Date: Mon, 25 Jul 2011 00:51:01 -0700 Subject: add support for TEMP_RESIDENCY_TIME for M109 --- Sprinter/Configuration.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Sprinter/Configuration.h') diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index bbc2cfe..c1c4918 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -140,6 +140,9 @@ char uuid[] = "00000000-0000-0000-0000-000000000000"; // If the temperature has not increased at the end of that period, the target temperature is set to zero. It can be reset with another M104/M109 //#define WATCHPERIOD 5000 //5 seconds +// Wait this long after achieving target temperature on M109 before continuing with print (seconds) +#define TEMP_RESIDENCY_TIME 20 + //// The minimal temperature defines the temperature below which the heater will not be enabled #define MINTEMP 5 -- cgit v1.2.1 From eb1c87fa7bf2e4bcc8b074775d88a6e767de2c29 Mon Sep 17 00:00:00 2001 From: "Lawrence Leung larryleungcal@yahoo.com" Date: Mon, 25 Jul 2011 00:55:42 -0700 Subject: Disable TEMP_RESIDENCY_TIME for default --- Sprinter/Configuration.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'Sprinter/Configuration.h') diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index c1c4918..8e8724c 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -16,12 +16,14 @@ // 2 is 200k thermistor // 3 is mendel-parts thermistor // 4 is 10k thermistor -#define THERMISTORHEATER 1 -#define THERMISTORBED 1 +// 5 is Ultimachine +// 6 is honeywell +#define THERMISTORHEATER 5 +#define THERMISTORBED 6 //// Calibration variables // X, Y, Z, E steps per unit - Metric Prusa Mendel with Wade extruder: -float axis_steps_per_unit[] = {80, 80, 3200/1.25,700}; +float axis_steps_per_unit[] = {32.37655, 32.37655, 642,144.31/2}; // Metric Prusa Mendel with Makergear geared stepper extruder: //float axis_steps_per_unit[] = {80,80,3200/1.25,1380}; @@ -36,7 +38,7 @@ const bool ENDSTOPS_INVERTING = false; //set to true to invert the logic of the #define BAUDRATE 115200 // Comment out (using // at the start of the line) to disable SD support: -#define SDSUPPORT 1 +//#define SDSUPPORT 1 //// ADVANCED SETTINGS - to tweak parameters @@ -101,7 +103,7 @@ long max_travel_acceleration_units_per_sq_second[] = {500,500,50,500}; // X, Y, // Machine UUID // This may be useful if you have multiple machines and wish to identify them by using the M115 command. // By default we set it to zeros. -char uuid[] = "00000000-0000-0000-0000-000000000000"; +char uuid[] = "00000000-0000-0000-0000-000000000123"; //// AD595 THERMOCOUPLE SUPPORT UNTESTED... USE WITH CAUTION!!!! @@ -119,7 +121,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000000"; // How often should the heater check for new temp readings, in milliseconds #define HEATER_CHECK_INTERVAL 500 -#define BED_CHECK_INTERVAL 5000 +#define BED_CHECK_INTERVAL 2000 // Comment the following line to enable heat management during acceleration #define DISABLE_CHECK_DURING_ACC #ifndef DISABLE_CHECK_DURING_ACC @@ -141,7 +143,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000000"; //#define WATCHPERIOD 5000 //5 seconds // Wait this long after achieving target temperature on M109 before continuing with print (seconds) -#define TEMP_RESIDENCY_TIME 20 +//#define TEMP_RESIDENCY_TIME 20 //// The minimal temperature defines the temperature below which the heater will not be enabled #define MINTEMP 5 @@ -150,7 +152,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000000"; // When temperature exceeds max temp, your heater will be switched off. // This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure! // You should use MINTEMP for thermistor short/failure protection. -#define MAXTEMP 275 +#define MAXTEMP 250 // Select one of these only to define how the nozzle temp is read. #define HEATER_USES_THERMISTOR -- cgit v1.2.1 From cec92aff246e711159220e2ce052a575a3a85279 Mon Sep 17 00:00:00 2001 From: Lawrence Date: Mon, 25 Jul 2011 10:56:55 -0700 Subject: Revert "Disable TEMP_RESIDENCY_TIME for default" This reverts commit eb1c87fa7bf2e4bcc8b074775d88a6e767de2c29. --- Sprinter/Configuration.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'Sprinter/Configuration.h') diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index 8e8724c..c1c4918 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -16,14 +16,12 @@ // 2 is 200k thermistor // 3 is mendel-parts thermistor // 4 is 10k thermistor -// 5 is Ultimachine -// 6 is honeywell -#define THERMISTORHEATER 5 -#define THERMISTORBED 6 +#define THERMISTORHEATER 1 +#define THERMISTORBED 1 //// Calibration variables // X, Y, Z, E steps per unit - Metric Prusa Mendel with Wade extruder: -float axis_steps_per_unit[] = {32.37655, 32.37655, 642,144.31/2}; +float axis_steps_per_unit[] = {80, 80, 3200/1.25,700}; // Metric Prusa Mendel with Makergear geared stepper extruder: //float axis_steps_per_unit[] = {80,80,3200/1.25,1380}; @@ -38,7 +36,7 @@ const bool ENDSTOPS_INVERTING = false; //set to true to invert the logic of the #define BAUDRATE 115200 // Comment out (using // at the start of the line) to disable SD support: -//#define SDSUPPORT 1 +#define SDSUPPORT 1 //// ADVANCED SETTINGS - to tweak parameters @@ -103,7 +101,7 @@ long max_travel_acceleration_units_per_sq_second[] = {500,500,50,500}; // X, Y, // Machine UUID // This may be useful if you have multiple machines and wish to identify them by using the M115 command. // By default we set it to zeros. -char uuid[] = "00000000-0000-0000-0000-000000000123"; +char uuid[] = "00000000-0000-0000-0000-000000000000"; //// AD595 THERMOCOUPLE SUPPORT UNTESTED... USE WITH CAUTION!!!! @@ -121,7 +119,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000123"; // How often should the heater check for new temp readings, in milliseconds #define HEATER_CHECK_INTERVAL 500 -#define BED_CHECK_INTERVAL 2000 +#define BED_CHECK_INTERVAL 5000 // Comment the following line to enable heat management during acceleration #define DISABLE_CHECK_DURING_ACC #ifndef DISABLE_CHECK_DURING_ACC @@ -143,7 +141,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000123"; //#define WATCHPERIOD 5000 //5 seconds // Wait this long after achieving target temperature on M109 before continuing with print (seconds) -//#define TEMP_RESIDENCY_TIME 20 +#define TEMP_RESIDENCY_TIME 20 //// The minimal temperature defines the temperature below which the heater will not be enabled #define MINTEMP 5 @@ -152,7 +150,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000123"; // When temperature exceeds max temp, your heater will be switched off. // This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure! // You should use MINTEMP for thermistor short/failure protection. -#define MAXTEMP 250 +#define MAXTEMP 275 // Select one of these only to define how the nozzle temp is read. #define HEATER_USES_THERMISTOR -- cgit v1.2.1 From a24acc77318776409699e4ba78666ca627a998ef Mon Sep 17 00:00:00 2001 From: Lawrence Date: Mon, 25 Jul 2011 10:58:02 -0700 Subject: Comment out TEMP_RESIDENCY_TIME --- Sprinter/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Sprinter/Configuration.h') diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index c1c4918..4dc72fa 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -141,7 +141,7 @@ char uuid[] = "00000000-0000-0000-0000-000000000000"; //#define WATCHPERIOD 5000 //5 seconds // Wait this long after achieving target temperature on M109 before continuing with print (seconds) -#define TEMP_RESIDENCY_TIME 20 +//#define TEMP_RESIDENCY_TIME 20 //// The minimal temperature defines the temperature below which the heater will not be enabled #define MINTEMP 5 -- cgit v1.2.1