Range

SCPI Command :

SEARch:TRIGger:RUNT:RANGe
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) RuntMode[source]
# SEARch:TRIGger:RUNT:RANGe
value: enums.RuntMode = driver.search.trigger.runt.range.get(search = 'abc')

Selects how the time limit of the runt pulse is defined based on the runt width and delta (see method RsRtx.search.trigger.runt.width.set() and method RsRtx.search.trigger.runt.delta.set() ) .

Parameters:

search – Search definition

Returns:

mode: ANY | LONGer | SHORter | WITHin | OUTSide

  • ANY: Triggers on all runts fulfilling the level condition, without time limitation.

  • LONGer: Triggers on runts longer than the given Runt width.

  • SHORter: Triggers on runts shorter than the given Runt width.

  • WITHin: Triggers if the runt length is inside a given time range. The range is defined by Runt width and ±Delta.

  • OUTSide: Triggers if the runt length is outside a given time range. The range definition is the same as for Within range.

set(search: str, mode: RuntMode) None[source]
# SEARch:TRIGger:RUNT:RANGe
driver.search.trigger.runt.range.set(search = 'abc', mode = enums.RuntMode.ANY)

Selects how the time limit of the runt pulse is defined based on the runt width and delta (see method RsRtx.search.trigger.runt.width.set() and method RsRtx.search.trigger.runt.delta.set() ) .

Parameters:
  • search – Search definition

  • mode

    ANY | LONGer | SHORter | WITHin | OUTSide

    • ANY: Triggers on all runts fulfilling the level condition, without time limitation.

    • LONGer: Triggers on runts longer than the given Runt width.

    • SHORter: Triggers on runts shorter than the given Runt width.

    • WITHin: Triggers if the runt length is inside a given time range. The range is defined by Runt width and ±Delta.

    • OUTSide: Triggers if the runt length is outside a given time range. The range definition is the same as for Within range.