Init

SCPI Commands :

DSRC:ITEM:PRBS:INIT:VALue
DSRC:ITEM:PRBS:INIT
class InitCls[source]

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

get_float_value() float[source]
# SCPI: DSRC:ITEM:PRBS:INIT:VALue
value: float = driver.dsrc.item.prbs.init.get_float_value()

Set a new initialization value.

return:

value: float Range: 1 to 511

get_value() bool[source]
# SCPI: DSRC:ITEM:PRBS:INIT
value: bool = driver.dsrc.item.prbs.init.get_value()

Enables/disables initialization of the shift register with a user-defined value.

return:

init: ON| OFF

set_float_value(value: float) None[source]
# SCPI: DSRC:ITEM:PRBS:INIT:VALue
driver.dsrc.item.prbs.init.set_float_value(value = 1.0)

Set a new initialization value.

param value:

float Range: 1 to 511

set_value(init: bool) None[source]
# SCPI: DSRC:ITEM:PRBS:INIT
driver.dsrc.item.prbs.init.set_value(init = False)

Enables/disables initialization of the shift register with a user-defined value.

param init:

ON| OFF