🎨 Flags for homing directions
This commit is contained in:
committed by
Scott Lahteine
parent
85fa8c55c9
commit
49b05ba989
@ -55,7 +55,7 @@
|
||||
#define X2_DIR_PIN FPC10_PIN // X2DIR
|
||||
#define X2_SERIAL_TX_PIN FPC12_PIN // X2UART
|
||||
#define X2_SERIAL_RX_PIN FPC12_PIN // X2UART
|
||||
#if X_HOME_DIR < 0
|
||||
#if X_HOME_TO_MIN
|
||||
#define X_MAX_PIN FPC2_PIN // X2-STOP
|
||||
#else
|
||||
#define X_MIN_PIN FPC2_PIN // X2-STOP
|
||||
|
@ -69,7 +69,7 @@
|
||||
//
|
||||
#ifdef X_STALL_SENSITIVITY
|
||||
#define X_STOP_PIN X_DIAG_PIN
|
||||
#if X_HOME_DIR < 0
|
||||
#if X_HOME_TO_MIN
|
||||
#define X_MAX_PIN E0_DIAG_PIN // X+
|
||||
#else
|
||||
#define X_MIN_PIN E0_DIAG_PIN // X+
|
||||
@ -81,7 +81,7 @@
|
||||
|
||||
#ifdef Y_STALL_SENSITIVITY
|
||||
#define Y_STOP_PIN Y_DIAG_PIN
|
||||
#if Y_HOME_DIR < 0
|
||||
#if Y_HOME_TO_MIN
|
||||
#define Y_MAX_PIN E1_DIAG_PIN // Y+
|
||||
#else
|
||||
#define Y_MIN_PIN E1_DIAG_PIN // Y+
|
||||
@ -93,7 +93,7 @@
|
||||
|
||||
#ifdef Z_STALL_SENSITIVITY
|
||||
#define Z_STOP_PIN Z_DIAG_PIN
|
||||
#if Z_HOME_DIR < 0
|
||||
#if Z_HOME_TO_MIN
|
||||
#define Z_MAX_PIN E2_DIAG_PIN // Z+
|
||||
#else
|
||||
#define Z_MIN_PIN E2_DIAG_PIN // Z+
|
||||
|
@ -71,7 +71,7 @@
|
||||
//
|
||||
#ifdef X_STALL_SENSITIVITY
|
||||
#define X_STOP_PIN X_DIAG_PIN
|
||||
#if X_HOME_DIR < 0
|
||||
#if X_HOME_TO_MIN
|
||||
#define X_MAX_PIN E0_DIAG_PIN // E0DET
|
||||
#else
|
||||
#define X_MIN_PIN E0_DIAG_PIN // E0DET
|
||||
@ -89,7 +89,7 @@
|
||||
|
||||
#ifdef Y_STALL_SENSITIVITY
|
||||
#define Y_STOP_PIN Y_DIAG_PIN
|
||||
#if Y_HOME_DIR < 0
|
||||
#if Y_HOME_TO_MIN
|
||||
#define Y_MAX_PIN E1_DIAG_PIN // E1DET
|
||||
#else
|
||||
#define Y_MIN_PIN E1_DIAG_PIN // E1DET
|
||||
@ -107,7 +107,7 @@
|
||||
|
||||
#ifdef Z_STALL_SENSITIVITY
|
||||
#define Z_STOP_PIN Z_DIAG_PIN
|
||||
#if Z_HOME_DIR < 0
|
||||
#if Z_HOME_TO_MIN
|
||||
#define Z_MAX_PIN E2_DIAG_PIN // PWRDET
|
||||
#else
|
||||
#define Z_MIN_PIN E2_DIAG_PIN // PWRDET
|
||||
|
@ -71,7 +71,7 @@
|
||||
//
|
||||
#ifdef X_STALL_SENSITIVITY
|
||||
#define X_STOP_PIN X_DIAG_PIN
|
||||
#if X_HOME_DIR < 0
|
||||
#if X_HOME_TO_MIN
|
||||
#define X_MAX_PIN PE15 // E0
|
||||
#else
|
||||
#define X_MIN_PIN PE15 // E0
|
||||
@ -83,7 +83,7 @@
|
||||
|
||||
#ifdef Y_STALL_SENSITIVITY
|
||||
#define Y_STOP_PIN Y_DIAG_PIN
|
||||
#if Y_HOME_DIR < 0
|
||||
#if Y_HOME_TO_MIN
|
||||
#define Y_MAX_PIN PE10 // E1
|
||||
#else
|
||||
#define Y_MIN_PIN PE10 // E1
|
||||
@ -95,7 +95,7 @@
|
||||
|
||||
#ifdef Z_STALL_SENSITIVITY
|
||||
#define Z_STOP_PIN Z_DIAG_PIN
|
||||
#if Z_HOME_DIR < 0
|
||||
#if Z_HOME_TO_MIN
|
||||
#define Z_MAX_PIN PG5 // E2
|
||||
#else
|
||||
#define Z_MIN_PIN PG5 // E2
|
||||
|
@ -72,7 +72,7 @@
|
||||
//
|
||||
#ifdef X_STALL_SENSITIVITY
|
||||
#define X_STOP_PIN X_DIAG_PIN
|
||||
#if X_HOME_DIR < 0
|
||||
#if X_HOME_TO_MIN
|
||||
#define X_MAX_PIN PC2 // E0DET
|
||||
#else
|
||||
#define X_MIN_PIN PC2 // E0DET
|
||||
@ -90,7 +90,7 @@
|
||||
|
||||
#ifdef Y_STALL_SENSITIVITY
|
||||
#define Y_STOP_PIN Y_DIAG_PIN
|
||||
#if Y_HOME_DIR < 0
|
||||
#if Y_HOME_TO_MIN
|
||||
#define Y_MAX_PIN PA0 // E1DET
|
||||
#else
|
||||
#define Y_MIN_PIN PA0 // E1DET
|
||||
@ -108,7 +108,7 @@
|
||||
|
||||
#ifdef Z_STALL_SENSITIVITY
|
||||
#define Z_STOP_PIN Z_DIAG_PIN
|
||||
#if Z_HOME_DIR < 0
|
||||
#if Z_HOME_TO_MIN
|
||||
#define Z_MAX_PIN PC15 // PWRDET
|
||||
#else
|
||||
#define Z_MIN_PIN PC15 // PWRDET
|
||||
|
Reference in New Issue
Block a user