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]
CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE:CSPath
Snippet: 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: Intraband contiguous CA (BW class B & C) . ICD: Intraband contiguous CA (BW class D) . ICE: Intraband contiguous CA (BW class E) .
- get_value() CarrAggrMode[source]
CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE
Snippet: value: enums.CarrAggrMode = driver.configure.carrierAggregation.mode.get_value()
Selects how many component carriers with intraband 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]
CONFigure:LTE:MEASurement<Instance>:CAGGregation:MODE
Snippet: driver.configure.carrierAggregation.mode.set_value(ca_mode = enums.CarrAggrMode.ICD)
Selects how many component carriers with intraband 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)