From aca2bbbc501c36962cfca431bf2496cb445dd851 Mon Sep 17 00:00:00 2001 From: Bob-the-Kuhn Date: Fri, 6 Apr 2018 20:16:05 -0500 Subject: [PATCH] Add TMC software SPI pins to pinsDebug_list.h (#10325) --- Marlin/pinsDebug_list.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Marlin/pinsDebug_list.h b/Marlin/pinsDebug_list.h index 875b3f04abb..dd17485b4dc 100644 --- a/Marlin/pinsDebug_list.h +++ b/Marlin/pinsDebug_list.h @@ -226,6 +226,15 @@ #if defined(DOGLCD_SCK) && DOGLCD_SCK >= 0 REPORT_NAME_DIGITAL(__LINE__, DOGLCD_SCK) #endif +#if defined(TMC_SW_MISO) && TMC_SW_MISO >= 0 + REPORT_NAME_DIGITAL(__LINE__, TMC_SW_MISO) +#endif +#if defined(TMC_SW_MOSI) && TMC_SW_MOSI >= 0 + REPORT_NAME_DIGITAL(__LINE__, TMC_SW_MOSI) +#endif +#if defined(TMC_SW_SCK) && TMC_SW_SCK >= 0 + REPORT_NAME_DIGITAL(__LINE__, TMC_SW_SCK) +#endif #if PIN_EXISTS(E_MUX0) REPORT_NAME_DIGITAL(__LINE__, E_MUX0_PIN) #endif