Barker

SCPI Commands :

PULSe:MOP:BARKer:BLANk
PULSe:MOP:BARKer:CODE
PULSe:MOP:BARKer:TTIMe
class BarkerCls[source]

Barker commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_blank() bool[source]
# SCPI: PULSe:MOP:BARKer:BLANk
value: bool = driver.pulse.mop.barker.get_blank()

Blanks out the signal during the transition time.

return:

blank: ON| OFF| 1| 0

get_code() BarkerCode[source]
# SCPI: PULSe:MOP:BARKer:CODE
value: enums.BarkerCode = driver.pulse.mop.barker.get_code()

Selects the code sequence.

return:

code: R2A| R2B| R3| R4A| R4B| R5| R7| R11| R13

get_ttime() float[source]
# SCPI: PULSe:MOP:BARKer:TTIMe
value: float = driver.pulse.mop.barker.get_ttime()

Sets the transition time.

return:

ttime: float Range: 0 to 50, Unit: percent

set_blank(blank: bool) None[source]
# SCPI: PULSe:MOP:BARKer:BLANk
driver.pulse.mop.barker.set_blank(blank = False)

Blanks out the signal during the transition time.

param blank:

ON| OFF| 1| 0

set_code(code: BarkerCode) None[source]
# SCPI: PULSe:MOP:BARKer:CODE
driver.pulse.mop.barker.set_code(code = enums.BarkerCode.R11)

Selects the code sequence.

param code:

R2A| R2B| R3| R4A| R4B| R5| R7| R11| R13

set_ttime(ttime: float) None[source]
# SCPI: PULSe:MOP:BARKer:TTIMe
driver.pulse.mop.barker.set_ttime(ttime = 1.0)

Sets the transition time.

param ttime:

float Range: 0 to 50, Unit: percent