Texas Instruments TMS320C6000 Reference Manual page 101

Chip support library api
Hide thumbs Also See for TMS320C6000:
Table of Contents

Advertisement

4.7.5
EDMA_CONFIG
Structure
Members
Description
Example
The EDMA configuration structure used to set up an
EDMA channel
EDMA_CONFIG
UINT32 opt
UINT32 src
UINT32 cnt
UINT32 dst
UINT32 idx
UINT32 rld
This is the EDMA configuration structure used to set up an EDMA chan-
nel. You create and initialize this structure and then pass its address to
the EDMA_ConfigA() function. You can use literal values or the
EDMA_MK macros to create the structure member values.
EDMA_CONFIG MyConfig = {
0x41200000, /* opt */
0x80000000, /* src */
0x00000040, /* cnt */
0x80010000, /* dst */
0x00000004, /* idx */
0x00000000
/* rld */
};
EDMA_ConfigA(hEdma,&MyConfig);
Options
Source address
Transfer count
Destination address
Index
Element count reload and link address
CSL API Reference
EDMA
4-53

Advertisement

Table of Contents
loading

Table of Contents