UesInfo

SCPI Commands :

SENSe:WLAN:SIGNaling<instance>:UESinfo:APSSid
SENSe:WLAN:SIGNaling<instance>:UESinfo:RXTRigframe
class UesInfoCls[source]

UesInfo commands group definition. 4 total commands, 2 Subgroups, 2 group commands

class RxTrigFrameStruct[source]

Structure for reading output parameters. Fields:

  • Total_Tf: int: decimal

  • Station_Tf: int: decimal

get_ap_ssid() str[source]
# SCPI: SENSe:WLAN:SIGNaling<instance>:UESinfo:APSSid
value: str = driver.sense.uesInfo.get_ap_ssid()

Returns the SSID of the associated access point. The command is only relevant in operation mode ‘Station’.

return:

ssid: string Service set identifier as string

get_rx_trig_frame() RxTrigFrameStruct[source]
# SCPI: SENSe:WLAN:SIGNaling<instance>:UESinfo:RXTRigframe
value: RxTrigFrameStruct = driver.sense.uesInfo.get_rx_trig_frame()

Queries the total trigger frames received and the number of trigger frames directed to the station, i.e. R&S CMW.

return:

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

Cloning the Group

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

Subgroups