2020-04-03 04:54 AM
Hi everybody,
I'm working on 10 stepper motors controller using STM32F407vgt6. Is there any way how to automatically turn off the step pulse after I turn it on programatically?
Maybe something with timer(s)? Some turn off delay?
The pulse should be turned off after a defined period of time/clock pulses.
The reason why I'm trying to do this is, that stepper motor driver requires some time to sense the pulse and so I can't turn it ON and then OFF immediately.
Thank you.
Solved! Go to Solution.
2020-04-03 06:15 AM
Yes, use timer one-pulse mode. The signal will rise when you enable the timer, then fall when the timer expires.
2020-04-03 06:15 AM
Yes, use timer one-pulse mode. The signal will rise when you enable the timer, then fall when the timer expires.
2020-04-07 12:04 PM
Thank you! It works well.