TMC module without TMC driver #832
-
Can I use a TMC2209 module (EN, step and direction pins) without enabling the TMC driver in the additional modules in the additional modules? If yes, will be the stepper motion is smooth and silent as would be expected from TMC module? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You can use the TMC2209 in standalone mode without the TMC module. In standalone mode the TMC will basically be like an A4899 but more silent. About the 74HC595 has a software UART pin..currently yes it's possible...but I was planning on removing that possibility to make the shift register more responsive for step generation. About the ESP8266...there is (still experimental but promising) new branch that uses the SPI port and the new shift register module (supports both output pins via 74HC595 as well as inputs via 74HC165). Besides 3 pins for the SPI signals 1 additional pin for the 74HC595 (optional) and 1 for the 74HC165 (optional) |
Beta Was this translation helpful? Give feedback.
You can use the TMC2209 in standalone mode without the TMC module. In standalone mode the TMC will basically be like an A4899 but more silent.
About the 74HC595 has a software UART pin..currently yes it's possible...but I was planning on removing that possibility to make the shift register more responsive for step generation.
It is still possible to do it, but would require to create a customized SOFTUART that updates the extended pin on each change.
I'm still thinking a bit on how I should tackle this.
About the ESP8266...there is (still experimental but promising) new branch that uses the SPI port and the new shift register module (supports both output pins via 74HC595 as well as inputs…