summaryrefslogtreecommitdiff
path: root/Sprinter/Configuration.h
diff options
context:
space:
mode:
authorLawrence <larryleungcal@yahoo.com>2011-07-25 10:56:55 -0700
committerLawrence <larryleungcal@yahoo.com>2011-07-25 10:56:55 -0700
commitcec92aff246e711159220e2ce052a575a3a85279 (patch)
treea77978aa6ad55bc8e8dadcaadb366402a0e57914 /Sprinter/Configuration.h
parenteb1c87fa7bf2e4bcc8b074775d88a6e767de2c29 (diff)
Revert "Disable TEMP_RESIDENCY_TIME for default"
This reverts commit eb1c87fa7bf2e4bcc8b074775d88a6e767de2c29.
Diffstat (limited to 'Sprinter/Configuration.h')
-rw-r--r--Sprinter/Configuration.h18
1 files changed, 8 insertions, 10 deletions
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