Stype
SCPI Command :
SEARch:TRIGger:SENT:STYPe
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) SentStype[source]
# SEARch:TRIGger:SENT:STYPe value: enums.SentStype = driver.search.trigger.sent.stype.get(search = 'abc')
Selects the serial message sequence to be searched for. To enable the search for one of the serial message types, use method
RsRtx.bus.sent.sformat.set()and enable with methodRsRtx.search.trigger.sent.smsg.set().- Returns:
sm_field_type: ID | IDDT
ID: Searches for the identifier.To set the identifier condition for the serial message, use SEARch:TRIGger:SENT:SICN, SEARch:TRIGger:SENT:SIMN and SEARch:TRIGger:SENT:SIMX.
IDDT: Searches for the combination of identifier and data.To set the identifier condition, use the commands shown above.To set the data condition, use SEARch:TRIGger:SENT:SDCN, SEARch:TRIGger:SENT:SDMN and SEARch:TRIGger:SENT:SDMX.
- set(search: str, sm_field_type: SentStype) None[source]
# SEARch:TRIGger:SENT:STYPe driver.search.trigger.sent.stype.set(search = 'abc', sm_field_type = enums.SentStype.ID)
Selects the serial message sequence to be searched for. To enable the search for one of the serial message types, use method
RsRtx.bus.sent.sformat.set()and enable with methodRsRtx.search.trigger.sent.smsg.set().- Parameters:
sm_field_type –
ID | IDDT
ID: Searches for the identifier.To set the identifier condition for the serial message, use SEARch:TRIGger:SENT:SICN, SEARch:TRIGger:SENT:SIMN and SEARch:TRIGger:SENT:SIMX.
IDDT: Searches for the combination of identifier and data.To set the identifier condition, use the commands shown above.To set the data condition, use SEARch:TRIGger:SENT:SDCN, SEARch:TRIGger:SENT:SDMN and SEARch:TRIGger:SENT:SDMX.