Allow override of TMC_SW_* pins (#14528)

This commit is contained in:
Ludy 2019-07-07 04:25:48 +02:00 committed by Scott Lahteine
parent c1bb3278d4
commit 3a75342508
6 changed files with 54 additions and 18 deletions

View file

@ -149,10 +149,16 @@
// Required for the Archim2 board. // Required for the Archim2 board.
// //
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_MOSI 28 // PD3 #define TMC_SW_MOSI 28 // PD3
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO 26 // PD1 #define TMC_SW_MISO 26 // PD1
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_SCK 27 // PD2 #define TMC_SW_SCK 27 // PD2
#endif #endif
#endif
// //
// Temperature Sensors // Temperature Sensors

View file

@ -66,10 +66,16 @@
#define E0_ENABLE_PIN PC4 #define E0_ENABLE_PIN PC4
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_SCK PB3 #define TMC_SW_SCK PB3
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO PB4 #define TMC_SW_MISO PB4
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_MOSI PB5 #define TMC_SW_MOSI PB5
#endif #endif
#endif
// //
// Heaters / Fans // Heaters / Fans

View file

@ -103,10 +103,16 @@
// Software SPI pins for TMC2130 stepper drivers // Software SPI pins for TMC2130 stepper drivers
// //
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_MOSI P4_28 #define TMC_SW_MOSI P4_28
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO P0_05 #define TMC_SW_MISO P0_05
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_SCK P0_04 #define TMC_SW_SCK P0_04
#endif #endif
#endif
#if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209) #if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209)
/** /**

View file

@ -83,10 +83,16 @@
// Software SPI pins for TMC2130 stepper drivers // Software SPI pins for TMC2130 stepper drivers
// //
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_MOSI P0_18 // ETH #define TMC_SW_MOSI P0_18 // ETH
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO P0_17 // ETH #define TMC_SW_MISO P0_17 // ETH
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_SCK P0_15 // ETH #define TMC_SW_SCK P0_15 // ETH
#endif #endif
#endif
// //
// Temperature Sensors // Temperature Sensors

View file

@ -97,10 +97,16 @@
// Software SPI pins for TMC2130 stepper drivers // Software SPI pins for TMC2130 stepper drivers
// //
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_MOSI P4_28 #define TMC_SW_MOSI P4_28
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO P0_05 #define TMC_SW_MISO P0_05
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_SCK P0_04 #define TMC_SW_SCK P0_04
#endif #endif
#endif
#if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209) #if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209)
/** /**

View file

@ -102,10 +102,16 @@
// Software SPI pins for TMC2130 stepper drivers // Software SPI pins for TMC2130 stepper drivers
// //
#if ENABLED(TMC_USE_SW_SPI) #if ENABLED(TMC_USE_SW_SPI)
#ifndef TMC_SW_MOSI
#define TMC_SW_MOSI P1_00 // ETH #define TMC_SW_MOSI P1_00 // ETH
#endif
#ifndef TMC_SW_MISO
#define TMC_SW_MISO P1_08 // ETH #define TMC_SW_MISO P1_08 // ETH
#endif
#ifndef TMC_SW_SCK
#define TMC_SW_SCK P1_09 // ETH #define TMC_SW_SCK P1_09 // ETH
#endif #endif
#endif
#if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209) #if HAS_DRIVER(TMC2208) || HAS_DRIVER(TMC2209)
/** /**