TypePy

SCPI Command :

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

Selects the event type to search for.

Returns:

type_py: STARt | STOP | DATA

  • STARt: Searches for the start of frame (SOF) .

  • STARt: Searches for the end of frame (EOF) .

  • DATA: Allows to specify a payload data pattern (both in Clause 22 or Clause 45) or an address pattern (in Clause 45, only) to search for.

set(search: str, type_py: BusMdioType) None[source]
# SEARch:TRIGger:MDIO:TYPE
driver.search.trigger.mdio.typePy.set(search = 'abc', type_py = enums.BusMdioType.DATA)

Selects the event type to search for.

Parameters:

type_py

STARt | STOP | DATA

  • STARt: Searches for the start of frame (SOF) .

  • STARt: Searches for the end of frame (EOF) .

  • DATA: Allows to specify a payload data pattern (both in Clause 22 or Clause 45) or an address pattern (in Clause 45, only) to search for.