4.6.24
DMA_Pause
Function
Arguments
Return Value
Description
Example
4.6.25
DMA_Reset
Function
Arguments
Return Value
Description
Example
Pauses the DMA channel by setting the START bits in
the primary control register accordingly
void DMA_Pause(
DMA_HANDLE hDma
);
Handle to DMA channel. See DMA_Open()
hDma
none
This function pauses the DMA channel by setting the START bits in the
primary control register accordingly. See also DMA_Start(),
DMA_Stop(), and DMA_AutoStart().
DMA_Pause(hDma);
Resets the DMA channel by setting its registers to
power-on defaults
void DMA_Reset(
DMA_HANDLE hDma
);
Handle to DMA channel. See DMA_Open()
hDma
none
Resets the DMA channel by setting its registers to power-on defaults
and disabling and clearing the channel interrupt. You may use INV as
the device handle to reset all channels.
/* reset an open DMA channel /
DMA_Reset(hDma);
/ reset all DMA channels */
DMA_Reset(INV);
CSL API Reference
DMA
4-47
Need help?
Do you have a question about the TMS320C6000 and is the answer not in the manual?