Calibration
SCPI Commands :
CALibration<HW>:CONTinueonerror
CALibration<HW>:DEBug
- Commands in total: 40Subgroups: 11Direct child commands: 2
- get_continue_on_error() bool[source]
# CALibration<HW>:CONTinueonerror value: bool = driver.calibration.get_continue_on_error()
Continues the calibration even though an error was detected. By default adjustments are aborted on error.
- Returns:
state: 1 | ON | 0| OFF
- set_continue_on_error(state: bool) None[source]
# CALibration<HW>:CONTinueonerror driver.calibration.set_continue_on_error(state = False)
Continues the calibration even though an error was detected. By default adjustments are aborted on error.
- Parameters:
state – 1 | ON | 0| OFF
- set_debug(state: bool) None[source]
# CALibration<HW>:DEBug driver.calibration.set_debug(state = False)
Activates logging of the internal adjustments.
- Parameters:
state – 0 | 1| OFF | ON
Cloning the Group
# Create a copy of the original group, that exists independently
calibration_copy = driver.calibration.clone()
Subgroups