mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-04-02 11:29:17 +00:00
Add TMC software SPI pins to pinsDebug_list.h (#10325)
This commit is contained in:
parent
211544b543
commit
aca2bbbc50
1 changed files with 9 additions and 0 deletions
|
@ -226,6 +226,15 @@
|
||||||
#if defined(DOGLCD_SCK) && DOGLCD_SCK >= 0
|
#if defined(DOGLCD_SCK) && DOGLCD_SCK >= 0
|
||||||
REPORT_NAME_DIGITAL(__LINE__, DOGLCD_SCK)
|
REPORT_NAME_DIGITAL(__LINE__, DOGLCD_SCK)
|
||||||
#endif
|
#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)
|
#if PIN_EXISTS(E_MUX0)
|
||||||
REPORT_NAME_DIGITAL(__LINE__, E_MUX0_PIN)
|
REPORT_NAME_DIGITAL(__LINE__, E_MUX0_PIN)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue