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!)