diff options
author | kliment <kliment.yanev@gmail.com> | 2011-06-14 23:37:53 -0700 |
---|---|---|
committer | kliment <kliment.yanev@gmail.com> | 2011-06-14 23:37:53 -0700 |
commit | 8abfdefc1047f2e943b8290858cc6918f2ede2e4 (patch) | |
tree | 18c7a9c6e4848b46dfad27a73a8c4341a9125a4d /Tonokip_Firmware | |
parent | da9e4c7914d17b323d7273ee66718fa26e4a0ff7 (diff) | |
parent | 5d8e951ed899674ddea7994466489a02e89f9db8 (diff) |
Merge pull request #35 from johnnyr/master
max endstops -1 in RAMPS 1.3
Diffstat (limited to 'Tonokip_Firmware')
-rw-r--r-- | Tonokip_Firmware/pins.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tonokip_Firmware/pins.h b/Tonokip_Firmware/pins.h index 79adaaa..9cdceb1 100644 --- a/Tonokip_Firmware/pins.h +++ b/Tonokip_Firmware/pins.h @@ -217,19 +217,19 @@ #define X_DIR_PIN 55 #define X_ENABLE_PIN 38 #define X_MIN_PIN 3 -#define X_MAX_PIN 2 +#define X_MAX_PIN -1 //2 //Max endstops default to disabled "-1", set to commented value to enable. #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_MIN_PIN 14 -#define Y_MAX_PIN 15 +#define Y_MAX_PIN -1 //15 #define Z_STEP_PIN 46 #define Z_DIR_PIN 48 #define Z_ENABLE_PIN 62 #define Z_MIN_PIN 18 -#define Z_MAX_PIN 19 +#define Z_MAX_PIN -1 //19 #define E_STEP_PIN 26 #define E_DIR_PIN 28 |