Wlad
SCPI Commands :
[SOURce<HW>]:BB:WLAD:DPMode
[SOURce<HW>]:BB:WLAD:FTYPe
[SOURce<HW>]:BB:WLAD:ITIMe
[SOURce<HW>]:BB:WLAD:PRESet
[SOURce<HW>]:BB:WLAD:SLENgth
[SOURce<HW>]:BB:WLAD:STATe
- class WladCls[source]
Wlad commands group definition. 112 total commands, 8 Subgroups, 6 group commands
- get_dp_mode() WlanadDmgPhyMode [source]
# SCPI: [SOURce<HW>]:BB:WLAD:DPMode value: enums.WlanadDmgPhyMode = driver.source.bb.wlad.get_dp_mode()
Sets the DMG/EDMG PHY mode.
- return:
dp_mode: CONTrol| SINGle| ESINgle CONTrol DMG control PHY mode SINGle DMG SC PHY mode ESINgle EDMG SC PHY mode
- get_ftype() WlanadFrameType [source]
# SCPI: [SOURce<HW>]:BB:WLAD:FTYPe value: enums.WlanadFrameType = driver.source.bb.wlad.get_ftype()
Queries the IEEE 802.11ad/ay frame type. All frames are data frames.
- return:
ftype: DATA
- get_itime() float [source]
# SCPI: [SOURce<HW>]:BB:WLAD:ITIMe value: float = driver.source.bb.wlad.get_itime()
Sets the idle time, the time delay between the frames.
- return:
itime: float Range: 0 to 0.01
- get_slength() int [source]
# SCPI: [SOURce<HW>]:BB:WLAD:SLENgth value: int = driver.source.bb.wlad.get_slength()
Sets the sequence length.
- return:
slength: integer Range: 1 to 53687
- get_state() bool [source]
# SCPI: [SOURce<HW>]:BB:WLAD:STATe value: bool = driver.source.bb.wlad.get_state()
Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.
- return:
state: 1| ON| 0| OFF
- preset() None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:PRESet driver.source.bb.wlad.preset()
Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command BB:WLAD:STATe.
- preset_with_opc(opc_timeout_ms: int = -1) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:PRESet driver.source.bb.wlad.preset_with_opc()
Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command BB:WLAD:STATe.
Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms:
Maximum time to wait in milliseconds, valid only for this call.
- set_dp_mode(dp_mode: WlanadDmgPhyMode) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:DPMode driver.source.bb.wlad.set_dp_mode(dp_mode = enums.WlanadDmgPhyMode.CONTrol)
Sets the DMG/EDMG PHY mode.
- param dp_mode:
CONTrol| SINGle| ESINgle CONTrol DMG control PHY mode SINGle DMG SC PHY mode ESINgle EDMG SC PHY mode
- set_ftype(ftype: WlanadFrameType) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:FTYPe driver.source.bb.wlad.set_ftype(ftype = enums.WlanadFrameType.BEACon)
Queries the IEEE 802.11ad/ay frame type. All frames are data frames.
- param ftype:
DATA
- set_itime(itime: float) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:ITIMe driver.source.bb.wlad.set_itime(itime = 1.0)
Sets the idle time, the time delay between the frames.
- param itime:
float Range: 0 to 0.01
- set_slength(slength: int) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:SLENgth driver.source.bb.wlad.set_slength(slength = 1)
Sets the sequence length.
- param slength:
integer Range: 1 to 53687
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:BB:WLAD:STATe driver.source.bb.wlad.set_state(state = False)
Activates the standard and deactivates all the other digital standards and digital modulation modes in the same path.
- param state:
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.wlad.clone()
Subgroups