1.9.4.16 DMA_ChannelPatternIgnoreValue Function

C

void DMA_ChannelPatternIgnoreValue ( DMA_CHANNEL channel, uint8_t ignoreValue )

Summary

Configures the byte to be ignored for pattern matching when it is enabled

Description

Configures the byte to be ignored for pattern matching when it is enabled. The configured ignoreValue is ignored during pattern matching.

Precondition

DMA should have been initialized by calling DMA_Initialize.

Parameters

Param Description
channel DMA channel
ignoreValue Value to be ignored during pattern matching

Returns

None

Example

DMA_ChannelPatternIgnoreValue(DMA_CHANNEL_0, 0xFF);

Remarks

None.