Mac

SCPI Commands :

[SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID
[SOURce<HW>]:BB:WLAD:PCONfig:MAC:STATe
class MacCls[source]

Mac commands group definition. 25 total commands, 5 Subgroups, 2 group commands

get_did() List[str][source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID
value: List[str] = driver.source.bb.wlad.pconfig.mac.get_did()

Sets the value of the duration ID field. Depending on the frame type, the 2-byte field Duration/ID is used to transmit the association identity of the station transmitting the frame or it indicates the duration assigned to the frame type. Exactly 16 bit must be entered.

return

did: 16 bits

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:MAC:STATe
value: bool = driver.source.bb.wlad.pconfig.mac.get_state()

Activates/deactivates the generation of the MAC Header.

return

state: 1| ON| 0| OFF

set_did(did: List[str]) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID
driver.source.bb.wlad.pconfig.mac.set_did(did = ['rawAbc1', 'rawAbc2', 'rawAbc3'])

Sets the value of the duration ID field. Depending on the frame type, the 2-byte field Duration/ID is used to transmit the association identity of the station transmitting the frame or it indicates the duration assigned to the frame type. Exactly 16 bit must be entered.

param did

16 bits

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:WLAD:PCONfig:MAC:STATe
driver.source.bb.wlad.pconfig.mac.set_state(state = False)

Activates/deactivates the generation of the MAC Header.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.wlad.pconfig.mac.clone()

Subgroups