TypePy

SCPI Command :

SEARch:TRIGger:HBTO:TYPE
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) BusXbtoType[source]
# SEARch:TRIGger:HBTO:TYPE
value: enums.BusXbtoType = driver.search.trigger.hbto.typePy.get(search = 'abc')

Selects the type of frame to be searched for.

Returns:

type_py: STARt | MAC | IDLE | ERRor

  • STARt: Start of frame.

  • MAC: MAC frame. This frame contains information that define how to go about transmitting and receiving frames.

  • IDLE: IDLE frame. This frame is used for clock synchronization.

  • ERRor: Error frame. Thi frame contains erroneous bits.

set(search: str, type_py: BusXbtoType) None[source]
# SEARch:TRIGger:HBTO:TYPE
driver.search.trigger.hbto.typePy.set(search = 'abc', type_py = enums.BusXbtoType.ERRor)

Selects the type of frame to be searched for.

Parameters:

type_py

STARt | MAC | IDLE | ERRor

  • STARt: Start of frame.

  • MAC: MAC frame. This frame contains information that define how to go about transmitting and receiving frames.

  • IDLE: IDLE frame. This frame is used for clock synchronization.

  • ERRor: Error frame. Thi frame contains erroneous bits.