How to make an automatic reset of the stepper motor pulse in STM32F407 without need to put it low manually?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-03 4: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.
- Labels:
-
STM32 Motor Control
-
STM32F4 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-03 6:15 AM
Yes, use timer one-pulse mode. The signal will rise when you enable the timer, then fall when the timer expires.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-03 6:15 AM
Yes, use timer one-pulse mode. The signal will rise when you enable the timer, then fall when the timer expires.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-04-07 12:04 PM
Thank you! It works well.
