summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware/pins.h
diff options
context:
space:
mode:
authorkliment <kliment.yanev@gmail.com>2011-03-13 12:34:34 +0100
committerkliment <kliment.yanev@gmail.com>2011-03-13 12:34:34 +0100
commitf538a2d590f4902372d50ac2e5c49dfe0da4039b (patch)
tree9da37d6e177f62eb517a5eba451d53ff7480369f /Tonokip_Firmware/pins.h
parent933c0b69b17491ec991251c51fbd58267cf83154 (diff)
Added SD support, heatbed support and internal endstop pullup support. Improved communications, removed echo, added buffering.
Diffstat (limited to 'Tonokip_Firmware/pins.h')
-rw-r--r--Tonokip_Firmware/pins.h12
1 files changed, 7 insertions, 5 deletions
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