Skip to content

Commit

Permalink
Changes for metal simple
Browse files Browse the repository at this point in the history
  • Loading branch information
lwalkera committed Aug 20, 2014
1 parent 6e63641 commit aa332e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
// The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MIN_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
Expand Down Expand Up @@ -301,7 +301,7 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
// ENDSTOP SETTINGS:
// Sets direction of endstops when homing; 1=MAX, -1=MIN
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Y_HOME_DIR 1
#define Z_HOME_DIR -1

#define min_software_endstops true // If true, axis won't move to coordinates less than HOME_POS.
Expand Down Expand Up @@ -396,7 +396,7 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o

// default settings

#define DEFAULT_AXIS_STEPS_PER_UNIT {63.36,63.36,2272.72,590}
#define DEFAULT_AXIS_STEPS_PER_UNIT {80,80,2020,96}
#define DEFAULT_MAX_FEEDRATE {100, 100, 2, 14} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {2000,2000,30,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.

Expand Down
3 changes: 2 additions & 1 deletion Marlin/pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,8 @@
#define TEMP_BED_PIN 6 // Bed / Analog pin numbering
#elif MOTHERBOARD == 84 //Printrboard rev F
#define X_STOP_PIN 35
#define Y_STOP_PIN 8
#define Y_MIN_PIN -1
#define Y_MAX_PIN 12
#define Z_STOP_PIN 36
#define TEMP_0_PIN 1 // Extruder / Analog pin numbering
#define TEMP_BED_PIN 0 // Bed / Analog pin numbering
Expand Down

0 comments on commit aa332e2

Please sign in to comment.