Maping

SCPI Commands :

CONFigure:LTE:MEASurement<Instance>:CAGGregation:MAPing:PCC
CONFigure:LTE:MEASurement<Instance>:CAGGregation:MAPing
class MapingCls[source]

Maping commands group definition. 3 total commands, 1 Subgroups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Cc_1: enums.CarrAggrMaping: INV | PCC | SCC1 | SCC2 | SCC3 | SCC4 | SCC5 | SCC6 | SCC7 Carrier mapped to CC1

  • Cc_2: enums.CarrAggrMaping: INV | PCC | SCC1 | SCC2 | SCC3 | SCC4 | SCC5 | SCC6 | SCC7 Carrier mapped to CC2

  • Cc_3: enums.CarrAggrMaping: INV | PCC | SCC1 | SCC2 | SCC3 | SCC4 | SCC5 | SCC6 | SCC7 Carrier mapped to CC3

  • Cc_4: enums.CarrAggrMaping: INV | PCC | SCC1 | SCC2 | SCC3 | SCC4 | SCC5 | SCC6 | SCC7 Carrier mapped to CC4

get_pcc() str[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:MAPing:PCC
value: str = driver.configure.carrierAggregation.maping.get_pcc()

This command is only relevant for combined signal path measurements with contiguous uplink CA. It queries to which CC the PCC is mapped. The measurement identifies the aggregated carriers as CC1 to CC4. The signaling application uses PCC and SCC<n>.

return:

cc: string Examples: ‘CC1’, ‘CC2’, ‘INV’ ‘INV’ means that the PCC is not contained in the measured set of aggregated uplink carriers.

get_value() ValueStruct[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:CAGGregation:MAPing
value: ValueStruct = driver.configure.carrierAggregation.maping.get_value()

This command is only relevant for combined signal path measurements with contiguous uplink CA. It queries which carriers are mapped to CC1 to CC4. The measurement identifies the aggregated carriers as CC1 to CC4. The signaling application uses PCC and SCC<n>. A returned INV means that no carrier is mapped to the CC.

return:

structure: for return value, see the help for ValueStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.carrierAggregation.maping.clone()

Subgroups