Stco

SCPI Command :

SEARch:TRIGger:USB:STCO
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) BusBitCondition[source]
# SEARch:TRIGger:USB:STCO
value: enums.BusBitCondition = driver.search.trigger.usb.stco.get(search = 'abc')

Defines, which Start- / Complete- (SC) split transaction type is searched for: SSPLIT or CSPLIT.

Returns:

sc: ONE | ZERO | DC

  • ONE: SC = 1 represents a complete-split (CSPLIT) transaction

  • ZERO: SC = 0 represents a start-split (SSPLIT) transaction

  • DC: SC = X represents ‘don’t care’ (DC)

set(search: str, sc: BusBitCondition) None[source]
# SEARch:TRIGger:USB:STCO
driver.search.trigger.usb.stco.set(search = 'abc', sc = enums.BusBitCondition.DC)

Defines, which Start- / Complete- (SC) split transaction type is searched for: SSPLIT or CSPLIT.

Parameters:

sc

ONE | ZERO | DC

  • ONE: SC = 1 represents a complete-split (CSPLIT) transaction

  • ZERO: SC = 0 represents a start-split (SSPLIT) transaction

  • DC: SC = X represents ‘don’t care’ (DC)