Write/Read
About PNA-X Pulsed Capabilities

FilterMode Property


Description

Sets and returns whether the PNA configures the 3-stage digital filter settings or they will be configured manually. When making manual settings, also send ADCCaptureMode Property which routes the IF through the 3-stage filter.

 VB Syntax

spm4.FilterMode = value

Variable

(Type) - Description

spm4

A SignalProcessingModuleFour (object)

value

(enum as NAModes) Filter mode. Choose from:

naAUTO   PNA controls digital filter settings.

naMANUAL  You control digital filter settings using other SignalProcessingModuleFour commands.

Return Type

Enum

Default

naAUTO

Examples

spm4.FilterMode = naAUTO 'Write

mode = spm4.FilterMode 'Read

C++ Syntax

HRESULT get_FilterMode(tagNAModes* dspMode);

HRESULT put_FilterMode(tagNAModes dspMode);

Interface

ISignalProcessingModuleFour