Merge branch 'master' of github.com:kliment/Sprinter into refactor

This commit is contained in:
kliment 2011-07-05 20:23:49 +02:00
commit 3025f862ad

View file

@ -435,50 +435,52 @@
#error Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu.
#endif
// uncomment the following line for Sanguinololu v1.2, comment for 1.1 or earlier.
// #define SANGUINOLOLU_V_1_2
// comment the following line for Sanguinololu v1.1 or earlier.
#define SANGUINOLOLU_V_1_2
#define X_STEP_PIN 15
#define X_DIR_PIN 21
#define X_ENABLE_PIN -1
#define X_MIN_PIN 18
#define X_MAX_PIN -2 //2
#define X_MAX_PIN -2
#define Y_STEP_PIN 22
#define Y_DIR_PIN 23
#define Y_ENABLE_PIN -1
#define Y_MIN_PIN 19
#define Y_MAX_PIN -1 //17
#define Y_MAX_PIN -1
#define Z_STEP_PIN 3
#define Z_DIR_PIN 2
// zenable defined by platform below
#define Z_MIN_PIN 20
#define Z_MAX_PIN -1 //19
#define Z_MAX_PIN -1
#define E_STEP_PIN 1
#define E_DIR_PIN 0
#define E_ENABLE_PIN -1
#define LED_PIN -1
#define FAN_PIN -1 // THIS LINE FOR V1.0
#define FAN_PIN -1
#define PS_ON_PIN -1
#define KILL_PIN -1
#define HEATER_0_PIN 13 // THIS LINE FOR V1.0+ (extruder)
#define HEATER_0_PIN 13 // (extruder)
#ifdef SANGUINOLOLU_V_1_2
#define HEATER_1_PIN 12 // (bed)
#define X_ENABLE_PIN 14
#define Y_ENABLE_PIN 14
#define Z_ENABLE_PIN 26
#define E_ENABLE_PIN 14
#else
#define HEATER_1_PIN 14 // (bed)
#define X_ENABLE_PIN -1
#define Y_ENABLE_PIN -1
#define Z_ENABLE_PIN -1
#define E_ENABLE_PIN -1
#endif