Update Configuration.h

This commit is contained in:
James Devine 2014-11-05 19:16:44 +01:00
parent b6820141ea
commit ff6b7d0b57

View file

@ -32,7 +32,7 @@
//// Calibration variables //// Calibration variables
// X, Y, Z, E steps per unit - Metric Prusa Mendel with Wade extruder: // 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: // Metric Prusa Mendel with Makergear geared stepper extruder:
//#define _AXIS_STEP_PER_UNIT {80,80,3200/1.25,1380} //#define _AXIS_STEP_PER_UNIT {80,80,3200/1.25,1380}
// MakerGear Hybrid Prusa Mendel: // 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. // 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 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: //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 X_ENDSTOP_INVERT = true;
const bool Y_ENDSTOP_INVERT = false; const bool Y_ENDSTOP_INVERT = true;
const bool Z_ENDSTOP_INVERT = false; const bool Z_ENDSTOP_INVERT = true;
// This determines the communication speed of the printer // This determines the communication speed of the printer
#define BAUDRATE 115200 #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. // M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
// M503 - Print settings // M503 - Print settings
// define this to enable eeprom support // 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: // to disable EEPROM Serial responses and decrease program space by ~1000 byte: comment this out:
// please keep turned on if you can. // please keep turned on if you can.
//#define PRINT_EEPROM_SETTING #define PRINT_EEPROM_SETTING
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
//// ARC Function (G2/G3 Command) //// ARC Function (G2/G3 Command)
@ -147,7 +147,7 @@ const int Z_MAX_LENGTH = 100;
//// MOVEMENT SETTINGS //// MOVEMENT SETTINGS
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
const int NUM_AXIS = 4; // The axis order in all axis related arrays is X, Y, Z, E 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 _HOMING_FEEDRATE {1500,1500,120} // (mm/min) !!
#define _AXIS_RELATIVE_MODES {false, false, false, false} #define _AXIS_RELATIVE_MODES {false, false, false, false}