From ff6b7d0b57d1c543f33c13cdd6307b462d2b8028 Mon Sep 17 00:00:00 2001 From: James Devine Date: Wed, 5 Nov 2014 19:16:44 +0100 Subject: [PATCH] Update Configuration.h --- Sprinter/Configuration.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index 3d7a399..54dba14 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -32,7 +32,7 @@ //// Calibration variables // X, Y, Z, E steps per unit - Metric Prusa Mendel with Wade extruder: -#define _AXIS_STEP_PER_UNIT {80, 80, 3200/1.25,700} +#define _AXIS_STEP_PER_UNIT {80, 160, 6400/1.25,500} // Metric Prusa Mendel with Makergear geared stepper extruder: //#define _AXIS_STEP_PER_UNIT {80,80,3200/1.25,1380} // MakerGear Hybrid Prusa Mendel: @@ -45,9 +45,9 @@ // The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins. //If your axes are only moving in one direction, make sure the endstops are connected properly. //If your axes move in one direction ONLY when the endstops are triggered, set [XYZ]_ENDSTOP_INVERT to true here: -const bool X_ENDSTOP_INVERT = false; -const bool Y_ENDSTOP_INVERT = false; -const bool Z_ENDSTOP_INVERT = false; +const bool X_ENDSTOP_INVERT = true; +const bool Y_ENDSTOP_INVERT = true; +const bool Z_ENDSTOP_INVERT = true; // This determines the communication speed of the printer #define BAUDRATE 115200 @@ -71,11 +71,11 @@ const bool Z_ENDSTOP_INVERT = false; // M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to. // M503 - Print settings // define this to enable eeprom support -//#define USE_EEPROM_SETTINGS +#define USE_EEPROM_SETTINGS // to disable EEPROM Serial responses and decrease program space by ~1000 byte: comment this out: // please keep turned on if you can. -//#define PRINT_EEPROM_SETTING +#define PRINT_EEPROM_SETTING //----------------------------------------------------------------------- //// ARC Function (G2/G3 Command) @@ -147,7 +147,7 @@ const int Z_MAX_LENGTH = 100; //// MOVEMENT SETTINGS //----------------------------------------------------------------------- const int NUM_AXIS = 4; // The axis order in all axis related arrays is X, Y, Z, E -#define _MAX_FEEDRATE {400, 400, 2, 45} // (mm/sec) +#define _MAX_FEEDRATE {400, 400, 2, 25} // (mm/sec) #define _HOMING_FEEDRATE {1500,1500,120} // (mm/min) !! #define _AXIS_RELATIVE_MODES {false, false, false, false}