diff options
author | kliment <kliment.yanev@gmail.com> | 2011-07-05 20:23:49 +0200 |
---|---|---|
committer | kliment <kliment.yanev@gmail.com> | 2011-07-05 20:23:49 +0200 |
commit | 3025f862ad58d0b94bec838fb180111423a45e90 (patch) | |
tree | 9dfe03987bb2446350486eecbfa34cc397ea7bfe /Sprinter | |
parent | d1cfd12190a0810bb6a623a5e674d9339e723b8e (diff) | |
parent | 53c0ec08ac97f9a3a38d69d96f3d3696558167a6 (diff) |
Merge branch 'master' of github.com:kliment/Sprinter into refactor
Diffstat (limited to 'Sprinter')
-rw-r--r-- | Sprinter/pins.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/Sprinter/pins.h b/Sprinter/pins.h index 7540ebc..dfd12b5 100644 --- a/Sprinter/pins.h +++ b/Sprinter/pins.h @@ -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 |