St

SCPI Command :

TRIGger<*>:MDIO:ST
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) BusMdioStartCode[source]
# TRIGger<*>:MDIO:ST
value: enums.BusMdioStartCode = driver.trigger.mdio.st.get(trigger = repcap.Trigger.Default)

Selects the start of frame code of the frame pattern; available only in trigger type Data. Note that Clause 22 is coded by ‘01’, while Clause 45 is coded by ‘00’, thus the lower Clause number is represented by the higher parameter value.

Parameters:

trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

Returns:

start_code: ST00 | ST01 | ST0X

  • ST00: Clause 45

  • ST01: Clause 22

  • ST0X: Any permissible start pattern

set(start_code: BusMdioStartCode, trigger=Trigger.Default) None[source]
# TRIGger<*>:MDIO:ST
driver.trigger.mdio.st.set(start_code = enums.BusMdioStartCode.ST00, trigger = repcap.Trigger.Default)

Selects the start of frame code of the frame pattern; available only in trigger type Data. Note that Clause 22 is coded by ‘01’, while Clause 45 is coded by ‘00’, thus the lower Clause number is represented by the higher parameter value.

Parameters:
  • start_code

    ST00 | ST01 | ST0X

    • ST00: Clause 45

    • ST01: Clause 22

    • ST0X: Any permissible start pattern

  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)