From f538a2d590f4902372d50ac2e5c49dfe0da4039b Mon Sep 17 00:00:00 2001 From: kliment Date: Sun, 13 Mar 2011 12:34:34 +0100 Subject: Added SD support, heatbed support and internal endstop pullup support. Improved communications, removed echo, added buffering. --- Tonokip_Firmware/pins.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'Tonokip_Firmware/pins.h') diff --git a/Tonokip_Firmware/pins.h b/Tonokip_Firmware/pins.h index adc5f71..7f9ab6b 100644 --- a/Tonokip_Firmware/pins.h +++ b/Tonokip_Firmware/pins.h @@ -204,19 +204,19 @@ #define X_DIR_PIN 28 #define X_ENABLE_PIN 24 #define X_MIN_PIN 3 -#define X_MAX_PIN 2 +#define X_MAX_PIN -2 //2 #define Y_STEP_PIN 38 #define Y_DIR_PIN 40 #define Y_ENABLE_PIN 36 #define Y_MIN_PIN 16 -#define Y_MAX_PIN 17 +#define Y_MAX_PIN -1 //17 #define Z_STEP_PIN 44 #define Z_DIR_PIN 46 #define Z_ENABLE_PIN 42 -#define Z_MIN_PIN 18 -#define Z_MAX_PIN 19 +#define Z_MIN_PIN -1 //18 +#define Z_MAX_PIN -1 //19 #define E_STEP_PIN 32 #define E_DIR_PIN 34 @@ -232,8 +232,10 @@ //#define HEATER_0_PIN 12 // UNCOMMENT THIS LINE FOR V1.0 #define HEATER_0_PIN 10 // THIS LINE FOR V1.1 +#define HEATER_1_PIN 8 // THIS LINE FOR V1.1 #define TEMP_0_PIN 2 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! +#define TEMP_1_PIN 1 // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!! @@ -290,4 +292,4 @@ #endif -#endif \ No newline at end of file +#endif -- cgit v1.2.1