This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
DSP: TMS320C28346ZFET
I need to know if it is possible to use circular indirect addressing mode with DMAC instruction.
From the document SPRU430E page 6-86 I know the DMAC syntax is DMAC ACC:P,loc32,*XAR7++ and the implementation with circular indirect addressing should look: DMAC ACC:P, *+XAR6[AR1%++], *XAR7++ (SPRU430E page 5-24). So one pointer is set with buffer begin address every time when end of the buffer size is reached.
My problem is that the circular buffer index increments only by one but I need to be able to define my own circular buffer pointer increment. For an example the circular buffer address is incremented by four meaning that every forth 16-bit value is read by DMAC instruction. Is it possible to define circular buffer pointer increment step value for DMAC instruction?
I need to implement simple DFT calculation that uses one reference sine waveform table (contains one sine period) that is used for every DFT frequency point calculation. In our application I can not use CPU time to recalculate reference sine tables.
Thank you.
Hi Richard,
Thank you for the idea. Using the RPTB instruction is good idea although this method is not as efficient the DMAC instruction with RPT is in sense of used CPU cycles.
I decided that I will use the DMAC with circular indirect addressing for the reference table that contains single sine/cosine period for each frequency. So the only limitation I will have is that I can make DFT calculations for the frequency values that divide well with buffer length - to meet the requirement where reference sine/cosine has repeating amplitude values in every period.
My current tested implementation:
RPT AR5
|| DMAC P, *+XAR6[AR1%++], *XAR7++
Still it will be nice if we can configure AR1 increment step - perhaps new idea for C2000 designers ;)