Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1023 Bytes

File metadata and controls

25 lines (20 loc) · 1023 Bytes

LoadImpedance IntEnum

Definition

Defines the Load Impedance acceptable values as enumerations.

Enumerations

Name Code
VERY_LOW 4
LOW 3
MEDIUM 2
HIGH 1

Examples

The following example demonstrates the LoadImpedance IntEnum. It sets the compensation settings on the SpikeSafe.

# set the load impedance and rise time
tcp_socket.send_scpi_command(f'SOUR1:PULS:CCOM {spikesafe_python.SpikeSafeEnums.LoadImpedance.MEDIUM}')
tcp_socket.send_scpi_command(f'SOUR1:PULS:RCOM {spikesafe_python.SpikeSafeEnums.RiseTime.FAST}') 

Examples In Action

/application_specific_examples/pulse_tuning/PulseTuningExample.py