Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚸 Add BTT SKRat UART driver sanity check #27639

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions Marlin/src/pins/stm32g0/pins_BTT_SKRAT_V1_0.h
Original file line number Diff line number Diff line change
@@ -309,16 +309,18 @@
//
// Software serial
//
#define X_SERIAL_TX_PIN PF10
#define Y_SERIAL_TX_PIN PD4
#define Z_SERIAL_TX_PIN PC8
#define E0_SERIAL_TX_PIN PD8
#define E1_SERIAL_TX_PIN PB11
//#define X_SERIAL_TX_PIN PF10
//#define Y_SERIAL_TX_PIN PD4
//#define Z_SERIAL_TX_PIN PC8
//#define E0_SERIAL_TX_PIN PD8
//#define E1_SERIAL_TX_PIN PB11

// Reduce baud rate to improve software serial reliability
#ifndef TMC_BAUD_RATE
#define TMC_BAUD_RATE 19200
#endif
//#ifndef TMC_BAUD_RATE
// #define TMC_BAUD_RATE 19200
//#endif

#error "UART-based drivers are not supported on this board."

#endif