2.31.22 DMA_IsSoftwareRequestPending Function

C

bool DMA_IsSoftwareRequestPending(DMA_CHANNEL channel)

Summary

Returns the status of the software request of the DMA channel.

Description

This function checks if there is a pending software request for the specified DMA channel.

Precondition

DMA_Initialize must be called.

Parameters

ParamDescription
channelDMA channel number.

Returns

True - If DMA request is pending.

False - If DMA request is not pending.

Example

DMA_IsSoftwareRequestPending(DMA_CHANNEL_0);

Remarks

None.