Mac
SCPI Commands :
[SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID
[SOURce<HW>]:BB:WLAD:PCONfig:MAC:STATe
- Commands in total: 25Subgroups: 5Direct child commands: 2
- get_did() str[source]
# [SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID value: 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.
- Returns:
did: 16 bits
- get_state() bool[source]
# [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.
- Returns:
state: 1 | ON | 0| OFF
- set_did(did: str) None[source]
# [SOURce<HW>]:BB:WLAD:PCONfig:MAC:DID driver.source.bb.wlad.pconfig.mac.set_did(did = rawAbc)
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.
- Parameters:
did – 16 bits
- set_state(state: bool) None[source]
# [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.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
mac_copy = driver.source.bb.wlad.pconfig.mac.clone()
Subgroups