Nc<NonContigCell>

RepCap Settings

# Range: Nc2 .. Nc4
rc = driver.sense.ueCapability.rfParameter.band.nc.repcap_nonContigCell_get()
driver.sense.ueCapability.rfParameter.band.nc.repcap_nonContigCell_set(repcap.NonContigCell.Nc2)

SCPI Commands

SENSe:WCDMa:SIGNaling<Instance>:UECapability:RFParameter:BAND<Band>:NC<NonContigCell>
class Nc[source]

Nc commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: NonContigCell, default value after init: NonContigCell.Nc2

class GetStruct[source]

Response structure. Fields:

  • Supported: enums.YesNoStatus: NO | YES Indicates if the UE supports non-contiguous multi-cell operation for the selected band/cell combination

  • Gap_Size: enums.GapSize: M5 | M10 | ANY The maximum gap size between the aggregated cells supported by the UE M5: 5 MHz M10: 10 MHz ANY: any multiple of 5 MHz

  • Nc_Comb_22: enums.YesNoStatus: NO | YES Indicates if the UE supports an equal number of contiguous cells on each side of the gap

  • Nc_Comb_1331: enums.YesNoStatus: NO | YES Indicates if the UE supports a different number of contiguous cells on each side of the gap

get(band=<Band.Default: -1>, nonContigCell=<NonContigCell.Default: -1>)GetStruct[source]
# SCPI: SENSe:WCDMa:SIGNaling<instance>:UECapability:RFParameter:BAND<band>:NC<cell>
value: GetStruct = driver.sense.ueCapability.rfParameter.band.nc.get(band = repcap.Band.Default, nonContigCell = repcap.NonContigCell.Default)

Queries the UE capabilities related to non-contiguous multi-cell operation.

param band

optional repeated capability selector. Default value: B1 (settable in the interface ‘Band’)

param nonContigCell

optional repeated capability selector. Default value: Nc2 (settable in the interface ‘Nc’)

return

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.ueCapability.rfParameter.band.nc.clone()