TypePy

SCPI Command :

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

Sets the type of frame to be searched for.

Returns:

type_py: HS_SOP | HS_EOP | HS_PH | HS_DATA | LP_ESC | LP_TURN | LP_HSRQ

  • HS_SOP: High speed start of packet

  • HS_EOP: High speed end of packet

  • HS_PH: High speed packet header

  • HS_DATA: High speed data

  • LP_ESC: Low power escape mode frame

  • LP_TURN: Low power lane turnaround

  • LP_HSRQ: Low power high speed request

set(search: str, type_py: BusDphyType) None[source]
# SEARch:TRIGger:DPHY:TYPE
driver.search.trigger.dphy.typePy.set(search = 'abc', type_py = enums.BusDphyType.HS_DATA)

Sets the type of frame to be searched for.

Parameters:

type_py

HS_SOP | HS_EOP | HS_PH | HS_DATA | LP_ESC | LP_TURN | LP_HSRQ

  • HS_SOP: High speed start of packet

  • HS_EOP: High speed end of packet

  • HS_PH: High speed packet header

  • HS_DATA: High speed data

  • LP_ESC: Low power escape mode frame

  • LP_TURN: Low power lane turnaround

  • LP_HSRQ: Low power high speed request