Marlin does not compile for SKR Mini with TMC2209 February 17, 2023 06:24PM |
Registered: 1 year ago Posts: 30 |
Marlin\src\module\stepper\../../inc/../pins/pins_postprocess.h:566:21: error: 'E0_SERIAL_TX_PIN' was not declared in this scope; did you mean 'X2_SERIAL_TX_PIN'?
Quote
Set *_SERIAL_TX_PIN and *_SERIAL_RX_PIN to match for all drivers
on the same serial port, either here or in your board's pins file.
Re: Marlin does not compile for SKR Mini with TMC2209 February 17, 2023 06:55PM |
Admin Registered: 12 years ago Posts: 6,796 |
Re: Marlin does not compile for SKR Mini with TMC2209 February 18, 2023 02:41AM |
Registered: 1 year ago Posts: 30 |
#ifndef SDCARD_CONNECTION #define SDCARD_CONNECTION ONBOARD #endif #if SD_CONNECTION_IS(ONBOARD) #define SD_DETECT_PIN PC4 #elif SD_CONNECTION_IS(LCD) && (BOTH(TOUCH_UI_FTDI_EVE, LCD_FYSETC_TFT81050) || IS_TFTGLCD_PANEL) #define SD_DETECT_PIN PB5 #define SD_SS_PIN PA10 #endif
Re: Marlin does not compile for SKR Mini with TMC2209 February 18, 2023 04:55AM |
Admin Registered: 12 years ago Posts: 6,796 |
Re: Marlin does not compile for SKR Mini with TMC2209 February 18, 2023 05:55AM |
Registered: 1 year ago Posts: 30 |