cancel
Showing results for 
Search instead for 
Did you mean: 

Can I use DMA for SSP in SSP_DataSize_9b mode?

vromanov2
Associate II
Posted on April 04, 2007 at 15:37

Can I use DMA for SSP in SSP_DataSize_9b mode?

1 REPLY 1
vromanov2
Associate II
Posted on May 17, 2011 at 09:40

For sample I need to send 10000 bytes to LCD.

Current send procedure:

Code:

for(j=0; j<sizeof(frame); j++) {

while(SSP_GetFlagStatus(SSP1, SSP_FLAG_TxFifoNotFull)==RESET);

SSP_SendData(SSP1, frame[j]|0x0100); //set 9st bit

}