Mode

SCPI Commands :

CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE:CSPath
CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE
class ModeCls[source]

Mode commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_combined_signal_path() CarrAggrMode[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE:CSPath
value: enums.CarrAggrMode = driver.configure.carrierAggregation.mode.get_combined_signal_path()

Queries the carrier aggregation mode in the CSP scenario. The mode is configured indirectly via method RsCmwLteMeas.Route. Scenario.CombinedSignalPath.set.

return:

ca_mode: OFF | INTRaband | ICD | ICE OFF: no carrier aggregation INTRaband: intra-band contiguous CA (BW class B & C) ICD: intra-band contiguous CA (BW class D) ICE: intra-band contiguous CA (BW class E)

get_value() CarrAggrMode[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE
value: enums.CarrAggrMode = driver.configure.carrierAggregation.mode.get_value()

Selects how many component carriers with intra-band contiguous aggregation are measured. For the combined signal path scenario, use method RsCmwLteMeas.Route.Scenario.CombinedSignalPath.set.

return:

ca_mode: OFF | INTRaband | ICD | ICE OFF: only one carrier is measured INTRaband: two carriers (BW class B & C) ICD: three carriers (BW class D) ICE: four carriers (BW class E)

set_value(ca_mode: CarrAggrMode) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE
driver.configure.carrierAggregation.mode.set_value(ca_mode = enums.CarrAggrMode.ICD)

Selects how many component carriers with intra-band contiguous aggregation are measured. For the combined signal path scenario, use method RsCmwLteMeas.Route.Scenario.CombinedSignalPath.set.

param ca_mode:

OFF | INTRaband | ICD | ICE OFF: only one carrier is measured INTRaband: two carriers (BW class B & C) ICD: three carriers (BW class D) ICE: four carriers (BW class E)