Browse Source

Fix *_CS_PIN for RAMPS_FD

Fix #9778
pull/1/head
Scott Lahteine 7 years ago
parent
commit
e0227f2110
  1. 12
      Marlin/src/pins/pins_RAMPS_FD_V1.h

12
Marlin/src/pins/pins_RAMPS_FD_V1.h

@ -63,42 +63,42 @@
#define X_STEP_PIN 63 #define X_STEP_PIN 63
#define X_DIR_PIN 62 #define X_DIR_PIN 62
#define X_ENABLE_PIN 48 #define X_ENABLE_PIN 48
#ifdef X_CS_PIN #ifndef X_CS_PIN
#define X_CS_PIN 68 #define X_CS_PIN 68
#endif #endif
#define Y_STEP_PIN 65 #define Y_STEP_PIN 65
#define Y_DIR_PIN 64 #define Y_DIR_PIN 64
#define Y_ENABLE_PIN 46 #define Y_ENABLE_PIN 46
#ifdef Y_CS_PIN #ifndef Y_CS_PIN
#define Y_CS_PIN 60 #define Y_CS_PIN 60
#endif #endif
#define Z_STEP_PIN 67 #define Z_STEP_PIN 67
#define Z_DIR_PIN 66 #define Z_DIR_PIN 66
#define Z_ENABLE_PIN 44 #define Z_ENABLE_PIN 44
#ifdef Z_CS_PIN #ifndef Z_CS_PIN
#define Z_CS_PIN 58 #define Z_CS_PIN 58
#endif #endif
#define E0_STEP_PIN 36 #define E0_STEP_PIN 36
#define E0_DIR_PIN 28 #define E0_DIR_PIN 28
#define E0_ENABLE_PIN 42 #define E0_ENABLE_PIN 42
#ifdef E0_CS_PIN #ifndef E0_CS_PIN
#define E0_CS_PIN 67 #define E0_CS_PIN 67
#endif #endif
#define E1_STEP_PIN 43 #define E1_STEP_PIN 43
#define E1_DIR_PIN 41 #define E1_DIR_PIN 41
#define E1_ENABLE_PIN 39 #define E1_ENABLE_PIN 39
#ifdef E1_CS_PIN #ifndef E1_CS_PIN
#define E1_CS_PIN 61 #define E1_CS_PIN 61
#endif #endif
#define E2_STEP_PIN 32 #define E2_STEP_PIN 32
#define E2_DIR_PIN 47 #define E2_DIR_PIN 47
#define E2_ENABLE_PIN 45 #define E2_ENABLE_PIN 45
#ifdef E2_CS_PIN #ifndef E2_CS_PIN
#define E2_CS_PIN 59 #define E2_CS_PIN 59
#endif #endif

Loading…
Cancel
Save