CalScopeGetInputImpedance

Purpose

Returns the specified channel’s input impedance.

Syntax

CalScopeGetInputImpedance (hHandle, nChannel, plInputImpedance, plStatus)

Parameters

Name
Type
Comments
hHandle
LONG
Handle for a Oscilloscope.
nChannel
SHORT
Select channel (0-based).
plInputImpedance
PLONG
Specified channel’s input impedance:
0.     Input Impedance is 1MOhms.
1.   Input Impedance is 50Ohms.
plStatus
PLONG
Returned status: 0 on success, negative number on failure.

Comments

Example

The following example returns channel 0 input impedance:

 

LONG   lHandle, lStatus, lInputImpedance;

 

CalScopeGetInputImpedance (lHandle, 0, &lInputImpedance, &lStatus);

 

See Also

CalScopeSetupAuto, CalScopeGetInfo, CalScopeMeasure, CalScopeReset, CalScopeSetupAcquisition, CalScopeSetupChannel, CalScopeGetError