Qos

SCPI Commands :

CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:ETOE
CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:PRIoritiz
class QosCls[source]

Qos commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_etoe() Tid[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:ETOE
value: enums.Tid = driver.configure.connection.qos.get_etoe()

Sets the TID value to be used for the end-to-end connection using DAU.

return:

tid: TID0 | TID1 | TID2 | TID3 | TID4 | TID5 | TID6 | TID7

get_prioritiz() PrioMode[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:PRIoritiz
value: enums.PrioMode = driver.configure.connection.qos.get_prioritiz()


    INTRO_CMD_HELP: Prioritization mode selects the transmission sequence.

    - Round-robin schedules equal transmission time to each TID
    - TID priority selection prioritizes the transmission of highest TID values
    - Automatic selection

    :return: mode: ROURobin | TIDPriority | AUTO
set_etoe(tid: Tid) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:ETOE
driver.configure.connection.qos.set_etoe(tid = enums.Tid.TID0)

Sets the TID value to be used for the end-to-end connection using DAU.

param tid:

TID0 | TID1 | TID2 | TID3 | TID4 | TID5 | TID6 | TID7

set_prioritiz(mode: PrioMode) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:QOS:PRIoritiz
driver.configure.connection.qos.set_prioritiz(mode = enums.PrioMode.AUTO)


    INTRO_CMD_HELP: Prioritization mode selects the transmission sequence.

    - Round-robin schedules equal transmission time to each TID
    - TID priority selection prioritizes the transmission of highest TID values
    - Automatic selection

    :param mode: ROURobin | TIDPriority | AUTO