Skip to content

Commit

Permalink
Change default Re-ARM UART pin order (#15037)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelMcLure authored and thinkyhead committed Aug 24, 2019
1 parent fdef32c commit 9c87786
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions Marlin/src/pins/lpc1768/pins_RAMPS_RE_ARM.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,17 +128,33 @@
// P2_08 E1-Step
// P2_13 E1-Dir

#define X_SERIAL_TX_PIN P2_13
#define X_SERIAL_RX_PIN P2_13
#ifndef X_SERIAL_TX_PIN
#define X_SERIAL_TX_PIN P0_01
#endif
#ifndef X_SERIAL_RX_PIN
#define X_SERIAL_RX_PIN P0_01
#endif

#define Y_SERIAL_TX_PIN P0_00
#define Y_SERIAL_RX_PIN P0_00
#ifndef Y_SERIAL_TX_PIN
#define Y_SERIAL_TX_PIN P0_00
#endif
#ifndef Y_SERIAL_RX_PIN
#define Y_SERIAL_RX_PIN P0_00
#endif

#define Z_SERIAL_TX_PIN P0_01
#define Z_SERIAL_RX_PIN P0_01
#ifndef Z_SERIAL_TX_PIN
#define Z_SERIAL_TX_PIN P2_13
#endif
#ifndef Z_SERIAL_RX_PIN
#define Z_SERIAL_RX_PIN P2_13
#endif

#define E0_SERIAL_TX_PIN P2_08
#define E0_SERIAL_RX_PIN P2_08
#ifndef E0_SERIAL_TX_PIN
#define E0_SERIAL_TX_PIN P2_08
#endif
#ifndef E0_SESIAL_RX_PIN
#define E0_SERIAL_RX_PIN P2_08
#endif

#endif

Expand Down

0 comments on commit 9c87786

Please sign in to comment.