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
- Commands in total: 112Subgroups: 8Direct child commands: 6
- get_dp_mode() WlanadDmgPhyMode[source]
# [SOURce<HW>]:BB:WLAD:DPMode value: enums.WlanadDmgPhyMode = driver.source.bb.wlad.get_dp_mode()
Sets the DMG/EDMG PHY mode.
- Returns:
dp_mode: CONTrol | SINGle | ESINgle CONTrol DMG control PHY mode SINGle DMG SC PHY mode ESINgle EDMG SC PHY mode
- get_ftype() WlanadFrameType[source]
# [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.
- Returns:
ftype: DATA
- get_itime() float[source]
# [SOURce<HW>]:BB:WLAD:ITIMe value: float = driver.source.bb.wlad.get_itime()
Sets the idle time, the time delay between the frames.
- Returns:
itime: float Range: 0 to 0.01
- get_slength() int[source]
# [SOURce<HW>]:BB:WLAD:SLENgth value: int = driver.source.bb.wlad.get_slength()
Sets the sequence length.
- Returns:
slength: integer Range: 1 to 53687
- get_state() bool[source]
# [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.
- Returns:
state: 1 | ON | 0| OFF
- preset() None[source]
# [SOURce<HW>]:BB:WLAD:PRESet driver.source.bb.wlad.preset()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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]
# [SOURce<HW>]:BB:WLAD:PRESet driver.source.bb.wlad.preset_with_opc()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_dp_mode(dp_mode: WlanadDmgPhyMode) None[source]
# [SOURce<HW>]:BB:WLAD:DPMode driver.source.bb.wlad.set_dp_mode(dp_mode = enums.WlanadDmgPhyMode.CONTrol)
Sets the DMG/EDMG PHY mode.
- Parameters:
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]
# [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.
- Parameters:
ftype – DATA
- set_itime(itime: float) None[source]
# [SOURce<HW>]:BB:WLAD:ITIMe driver.source.bb.wlad.set_itime(itime = 1.0)
Sets the idle time, the time delay between the frames.
- Parameters:
itime – float Range: 0 to 0.01
- set_slength(slength: int) None[source]
# [SOURce<HW>]:BB:WLAD:SLENgth driver.source.bb.wlad.set_slength(slength = 1)
Sets the sequence length.
- Parameters:
slength – integer Range: 1 to 53687
- set_state(state: bool) None[source]
# [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.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
wlad_copy = driver.source.bb.wlad.clone()
Subgroups