UesInfo

SCPI Commands :

SENSe:LTE:SIGNaling<instance>:UESinfo:UEUSage
SENSe:LTE:SIGNaling<instance>:UESinfo:VDPReference
SENSe:LTE:SIGNaling<instance>:UESinfo:IMEI
SENSe:LTE:SIGNaling<instance>:UESinfo:IMSI
class UesInfoCls[source]

UesInfo commands group definition. 7 total commands, 1 Subgroups, 4 group commands

get_imei() str[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:IMEI
value: str = driver.sense.uesInfo.get_imei()

Queries the IMEI of the UE.

return:

imei: string Up to 18 digits

get_imsi() str[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:IMSI
value: str = driver.sense.uesInfo.get_imsi()

Queries the IMSI of the UE.

return:

imsi: string Up to 16 digits

get_ue_usage() UeUsage[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:UEUSage
value: enums.UeUsage = driver.sense.uesInfo.get_ue_usage()

Queries the usage setting of the UE.

return:

usage: VCENtric | DCENtric VCENtric: Voice centric DCENtric: Data centric

get_vd_preference() VdPreference[source]
# SCPI: SENSe:LTE:SIGNaling<instance>:UESinfo:VDPReference
value: enums.VdPreference = driver.sense.uesInfo.get_vd_preference()

Queries the voice domain preference of the UE.

return:

value: CVONly | IPVonly | CVPRefered | IPVPrefered CVONly: CS voice only IPVonly: IMS PS voice only CVPRefered: CS voice preferred, IMS PS voice as secondary IPVPrefered: IMS PS voice preferred, CS voice as secondary

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.uesInfo.clone()

Subgroups