Can I use DMA for SSP in SSP_DataSize_9b mode?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2007-04-04 06:37 AM
Posted on April 04, 2007 at 15:37
Can I use DMA for SSP in SSP_DataSize_9b mode?
Labels:
- Labels:
-
Legacy Products
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2011-05-17 12:40 AM
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 }