Mtest

SCPI Commands :

MTESt:ADD
MTESt:SHOW
MTESt:LABel
MTESt:REMove
MTESt:WFMLupdate
MTESt:CEMask
Commands in total: 86
Subgroups: 17
Direct child commands: 6
get_label() bool[source]
# MTESt:LABel
value: bool = driver.mtest.get_label()

Switches the display of the mask test name on or off. To change the name of the mask test, use method RsRtx.mtest.rename.set() .

Returns:

label_state: OFF | ON

get_show() bool[source]
# MTESt:SHOW
value: bool = driver.mtest.get_show()

Switches the display of all mask segments on or off.

Returns:

state: OFF | ON

set_add(mask_test_name: str) None[source]
# MTESt:ADD
driver.mtest.set_add(mask_test_name = 'abc')

Creates a new mask test definition with the specified name.

Parameters:

mask_test_name – String with the name of the mask test

set_ce_mask(mask_test: str) None[source]
# MTESt:CEMask
driver.mtest.set_ce_mask(mask_test = 'abc')

Converts the test and mask definitions of the current mask test to a new mask test of type ‘User’.

Parameters:

mask_test – String with the name of the mask test

set_label(label_state: bool) None[source]
# MTESt:LABel
driver.mtest.set_label(label_state = False)

Switches the display of the mask test name on or off. To change the name of the mask test, use method RsRtx.mtest.rename.set() .

Parameters:

label_state – OFF | ON

set_remove(mask_test_name: str) None[source]
# MTESt:REMove
driver.mtest.set_remove(mask_test_name = 'abc')

Deletes the mask test definition with the specified name.

Parameters:

mask_test_name – String with the name of the mask test

set_show(state: bool) None[source]
# MTESt:SHOW
driver.mtest.set_show(state = False)

Switches the display of all mask segments on or off.

Parameters:

state – OFF | ON

set_wfml_update(mask_test: str) None[source]
# MTESt:WFMLupdate
driver.mtest.set_wfml_update(mask_test = 'abc')

Creates the upper and lower mask limit from the envelope of the selected reference waveform. If the reference waveform was not defined before, it is created automatically from the mask test source waveform which is set wtih method RsRtx.mtest.source.set() .

Parameters:

mask_test – String containing the name of the mask test

Cloning the Group

# Create a copy of the original group, that exists independently
mtest_copy = driver.mtest.clone()

Subgroups