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.

5535: Sending Out Data Using LCD Pins Via DMA

Other Parts Discussed in Thread: TMS320C5535

Once for every loop, I want to send out new data on the LCD interface.  Can it be done faster (using less DSP clock cycles) using DMA compared to my example program below (rather than writing to the port which takes 3cc)?  I don't see any way to trigger the LCD DMA on a timer (but that would be ideal).

Thanks,

Sheldon

RPTBLOCAL   DONE_LOOP-1

MOV     *port(#IOINDATA1),T2     ;Read input data

MOV     T2,*port(#LCD0DATA)      ;Send out data

NOP

NOP

NOP

DONE_LOOP  NOP                              ;(This instruction not in loop!)