UeCapability

SCPI Commands :

[CONFigure]:SIGNaling:FGS:UECapability:MODE
[CONFigure]:SIGNaling:FGS:UECapability:SEGMentation
[CONFigure]:SIGNaling:FGS:UECapability:SRSCarrier
class UeCapabilityCls[source]

UeCapability commands group definition. 6 total commands, 2 Subgroups, 3 group commands

get_mode() ModeUeCapability[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:MODE
value: enums.ModeUeCapability = driver.configure.signaling.fgs.ueCapability.get_mode()

Selects the configuration mode for ‘UeCapabilityEnquiry’ messages in 5GS tracking areas.

return:

mode: SKIP: no ‘UeCapabilityEnquiry’ messages AUTO: automatic message configuration UDEFined: configuration via the other commands in this chapter

get_segmentation() bool[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:SEGMentation
value: bool = driver.configure.signaling.fgs.ueCapability.get_segmentation()

Selects whether the UE is allowed to use segmentation for capability information in 5GS tracking areas.

return:

enable: No help available

get_srs_carrier() bool[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:SRSCarrier
value: bool = driver.configure.signaling.fgs.ueCapability.get_srs_carrier()

Selects whether the UE must report capabilities for SRS carrier switching. The flag is sent as ‘srs-SwitchingTimeRequest’.

return:

srs_enable: No help available

set_mode(mode: ModeUeCapability) None[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:MODE
driver.configure.signaling.fgs.ueCapability.set_mode(mode = enums.ModeUeCapability.AUTO)

Selects the configuration mode for ‘UeCapabilityEnquiry’ messages in 5GS tracking areas.

param mode:

SKIP: no ‘UeCapabilityEnquiry’ messages AUTO: automatic message configuration UDEFined: configuration via the other commands in this chapter

set_segmentation(enable: bool) None[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:SEGMentation
driver.configure.signaling.fgs.ueCapability.set_segmentation(enable = False)

Selects whether the UE is allowed to use segmentation for capability information in 5GS tracking areas.

param enable:

No help available

set_srs_carrier(srs_enable: bool) None[source]
# SCPI: [CONFigure]:SIGNaling:FGS:UECapability:SRSCarrier
driver.configure.signaling.fgs.ueCapability.set_srs_carrier(srs_enable = False)

Selects whether the UE must report capabilities for SRS carrier switching. The flag is sent as ‘srs-SwitchingTimeRequest’.

param srs_enable:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.signaling.fgs.ueCapability.clone()

Subgroups