Display

SCPI Commands :

TRACe:REMote:MODE:DISPlay:CLEar
TRACe:REMote:MODE:DISPlay:ENABle
class DisplayCls[source]

Display commands group definition. 2 total commands, 0 Subgroups, 2 group commands

clear() None[source]
# SCPI: TRACe:REMote:MODE:DISPlay:CLEar
driver.trace.remote.mode.display.clear()

Clears the display of the SCPI remote trace in analysis mode.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: TRACe:REMote:MODE:DISPlay:CLEar
driver.trace.remote.mode.display.clear_with_opc()

Clears the display of the SCPI remote trace in analysis mode.

Same as clear, but waits for the operation to complete before continuing further. Use the RsCmwBase.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

get_enable() RemoteTraceEnable[source]
# SCPI: TRACe:REMote:MODE:DISPlay:ENABle
value: enums.RemoteTraceEnable = driver.trace.remote.mode.display.get_enable()

Enables or disables the display of the SCPI remote trace. Two modes are available when the display is enabled: a live mode and an analysis mode.

return:

benable: No help available

set_enable(benable: RemoteTraceEnable) None[source]
# SCPI: TRACe:REMote:MODE:DISPlay:ENABle
driver.trace.remote.mode.display.set_enable(benable = enums.RemoteTraceEnable.ANALysis)

Enables or disables the display of the SCPI remote trace. Two modes are available when the display is enabled: a live mode and an analysis mode.

param benable:

ANALysis | LIVE | OFF ANALysis: Stop tracing to analyze already traced messages. LIVE: Trace messages and display them. OFF: Disable the report display. Default value: OFF