Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1000 Bytes

File metadata and controls

25 lines (20 loc) · 1000 Bytes

RiseTime IntEnum

Definition

Defines the Rise Time acceptable values as enumerations.

Enumerations

Name Code
VERY_SLOW 4
SLOW 3
MEDIUM 2
FAST 1

Examples

The following example demonstrates the RiseTime 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