Repetition

SCPI Commands :

[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:ACTual
[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
[SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
class RepetitionCls[source]

Repetition commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_actual() float[source]
# SCPI: [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:ACTual
value: float = driver.source.bb.gnss.control.time.repetition.get_actual()

Queries the current repetition of the GNSS simulation duration.

return:

current_iter: float

get_count() int[source]
# SCPI: [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
value: int = driver.source.bb.gnss.control.time.repetition.get_count()

Sets the number of repetitions of a configured GNSS simulation duration. If you enable infinite repetitions, the number of repetitions is also infinite.

return:

numb_repetitions: integer Range: 1 to 1000

get_infinite() bool[source]
# SCPI: [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
value: bool = driver.source.bb.gnss.control.time.repetition.get_infinite()

Enables an infinite number of repetitions of a configured GNSS simulation duration. If enabled, the number of repetitions is also infinite.

return:

limited_state: 1| ON| 0| OFF

set_count(numb_repetitions: int) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:COUNt
driver.source.bb.gnss.control.time.repetition.set_count(numb_repetitions = 1)

Sets the number of repetitions of a configured GNSS simulation duration. If you enable infinite repetitions, the number of repetitions is also infinite.

param numb_repetitions:

integer Range: 1 to 1000

set_infinite(limited_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:CONTrol:TIME:REPetition:INFinite
driver.source.bb.gnss.control.time.repetition.set_infinite(limited_state = False)

Enables an infinite number of repetitions of a configured GNSS simulation duration. If enabled, the number of repetitions is also infinite.

param limited_state:

1| ON| 0| OFF