FrameType

SCPI Command :

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

Allows to select the Type of Frame code (or OP code, OpCode, operation code) ; available only in search criteria type Data. Note that the same OpCode may have different meanings in Clause 22 and Clause 45.

Returns:

frame_type: OP00 | OP01 | OP10 | OP11 | OPXX

  • OP00: Address frame (in Clause 45, only)

  • OP01: Write frame (in Clause 22 or Clause 45)

  • OP10: Read frame (in Clause 22) or Post-Read increment address frame (in Clause 45)

  • OP11: Read frame (in Clause 45)

  • OPXX: Any frame type

set(search: str, frame_type: MdioFrameType) None[source]
# SEARch:TRIGger:MDIO:FRAMetype
driver.search.trigger.mdio.frameType.set(search = 'abc', frame_type = enums.MdioFrameType.OP00)

Allows to select the Type of Frame code (or OP code, OpCode, operation code) ; available only in search criteria type Data. Note that the same OpCode may have different meanings in Clause 22 and Clause 45.

Parameters:

frame_type

OP00 | OP01 | OP10 | OP11 | OPXX

  • OP00: Address frame (in Clause 45, only)

  • OP01: Write frame (in Clause 22 or Clause 45)

  • OP10: Read frame (in Clause 22) or Post-Read increment address frame (in Clause 45)

  • OP11: Read frame (in Clause 45)

  • OPXX: Any frame type