2007-04-04 06:37 AM
Can I use DMA for SSP in SSP_DataSize_9b mode?
2011-05-17 12:40 AM
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 }