HpMarker
SCPI Commands :
[SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:VOLTage
[SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:[STATe]
- Commands in total: 4Subgroups: 1Direct child commands: 2
- get_state() bool[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:[STATe] value: bool = driver.source.iq.output.analog.hpMarker.get_state()
Enables the output of high precision marker signals at the analog I/Q output connectors ‘I/Q’. For high precision marker signal output, you can only use the analog outputs for one path at a time. If you enable the marker output for one path, the marker output for the other path is disabled.
- Returns:
state: 1 | ON | 0| OFF
- get_voltage() IqOutHpmVoltage[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:VOLTage value: enums.IqOutHpmVoltage = driver.source.iq.output.analog.hpMarker.get_voltage()
Sets the level of the high precision marker signals at the analog I/Q output connectors. Applying this level requires enabling the high precision marker signals: SOURce1:IQ:OUTPut:ANALog:HPMarker:STATe 1
- Returns:
output_voltage: O1V2 | O1V5 | O1V8 | O2V5
- set_state(state: bool) None[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:[STATe] driver.source.iq.output.analog.hpMarker.set_state(state = False)
Enables the output of high precision marker signals at the analog I/Q output connectors ‘I/Q’. For high precision marker signal output, you can only use the analog outputs for one path at a time. If you enable the marker output for one path, the marker output for the other path is disabled.
- Parameters:
state – 1 | ON | 0| OFF
- set_voltage(output_voltage: IqOutHpmVoltage) None[source]
# [SOURce<HW>]:IQ:OUTPut:[ANALog]:HPMarker:VOLTage driver.source.iq.output.analog.hpMarker.set_voltage(output_voltage = enums.IqOutHpmVoltage.O1V2)
Sets the level of the high precision marker signals at the analog I/Q output connectors. Applying this level requires enabling the high precision marker signals: SOURce1:IQ:OUTPut:ANALog:HPMarker:STATe 1
- Parameters:
output_voltage – O1V2 | O1V5 | O1V8 | O2V5
Cloning the Group
# Create a copy of the original group, that exists independently
hpMarker_copy = driver.source.iq.output.analog.hpMarker.clone()
Subgroups