RiseTime IntEnum
Defines the Rise Time acceptable values as enumerations.
| Name | Code |
|---|---|
| VERY_SLOW | 4 |
| SLOW | 3 |
| MEDIUM | 2 |
| FAST | 1 |
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}')
/application_specific_examples/pulse_tuning/PulseTuningExample.py