I am planning to have about 10 microsecond period at max speed.
Currently I implemented it using DMA/PIO, but I am open to rewriting it using PWM if it is better.
It is very important to know precise position of the stepper after abort, in other word to know how many pulses were generated.
PIO does not appear to have enough registers to keep that count, so I was hoping to use DMA READ_ADDR or TRANS_COUNT to do that.
But would the DMA abort/restart procedure be deterministic or can it loose count of completed transfers because of some race?
Another requirement for steppers it to know the exact position of the sensor. It is OK to delay stopping (since deceleration takes time anyway), but storing the exact step count at the moment sensor signaled is a must. I do not know whether it is possible to do it in PIO or DMA level.
Currently I implemented it using DMA/PIO, but I am open to rewriting it using PWM if it is better.
It is very important to know precise position of the stepper after abort, in other word to know how many pulses were generated.
PIO does not appear to have enough registers to keep that count, so I was hoping to use DMA READ_ADDR or TRANS_COUNT to do that.
But would the DMA abort/restart procedure be deterministic or can it loose count of completed transfers because of some race?
Another requirement for steppers it to know the exact position of the sensor. It is OK to delay stopping (since deceleration takes time anyway), but storing the exact step count at the moment sensor signaled is a must. I do not know whether it is possible to do it in PIO or DMA level.
Statistics: Posted by jhnlmn — Tue May 21, 2024 6:56 pm