TypePy

SCPI Commands :

PULSe:TYPE:FALL
PULSe:TYPE:RISE
class TypePyCls[source]

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

get_fall() PulseType[source]
# SCPI: PULSe:TYPE:FALL
value: enums.PulseType = driver.pulse.typePy.get_fall()

Sets the slope type for the rising and falling edges.

return:

fall: No help available

get_rise() PulseType[source]
# SCPI: PULSe:TYPE:RISE
value: enums.PulseType = driver.pulse.typePy.get_rise()

Sets the slope type for the rising and falling edges.

return:

rise: LINear| COSine| RCOSine| SQRT

set_fall(fall: PulseType) None[source]
# SCPI: PULSe:TYPE:FALL
driver.pulse.typePy.set_fall(fall = enums.PulseType.COSine)

Sets the slope type for the rising and falling edges.

param fall:

LINear| COSine| RCOSine| SQRT

set_rise(rise: PulseType) None[source]
# SCPI: PULSe:TYPE:RISE
driver.pulse.typePy.set_rise(rise = enums.PulseType.COSine)

Sets the slope type for the rising and falling edges.

param rise:

LINear| COSine| RCOSine| SQRT