Huwb

SCPI Commands :

[SOURce<HW>]:BB:LRWPan:HUWB:SRF
[SOURce<HW>]:BB:[LRWPan]:HUWB:ASL
[SOURce<HW>]:BB:[LRWPan]:HUWB:ASN
[SOURce<HW>]:BB:[LRWPan]:HUWB:BWIDth
[SOURce<HW>]:BB:[LRWPan]:HUWB:CCCL
[SOURce<HW>]:BB:[LRWPan]:HUWB:CNUMber
[SOURce<HW>]:BB:[LRWPan]:HUWB:F2MS
[SOURce<HW>]:BB:[LRWPan]:HUWB:IINTerval
[SOURce<HW>]:BB:[LRWPan]:HUWB:OBANd
Commands in total: 77
Subgroups: 6
Direct child commands: 9
get_asl() HrpUwbActSegmentLength[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:ASL
value: enums.HrpUwbActSegmentLength = driver.source.bb.lrWpan.huwb.get_asl()

Sets the active segment length.

Returns:

act_seg_length: ASL_16 | ASL_32 | ASL_64 | ASL_128 | ASL_256 | ASL_512 | ASL_1024 | ASL_2048

get_asn() HrpUwbActSegmentNum[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:ASN
value: enums.HrpUwbActSegmentNum = driver.source.bb.lrWpan.huwb.get_asn()

Requires [:SOURce<hw>]:BB:LRWPan | HUWB:STD BPRF | HPRF | EHPRF | SENS. Sets the number of active segments.

Returns:

acg_seg_number: ASN_1 | ASN_2 | ASN_3 | ASN_4

get_bandwidth() float[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:BWIDth
value: float = driver.source.bb.lrWpan.huwb.get_bandwidth()

Queries the channel bandwidth. The bandwidth depends on the channel number.

get_cccl() HrpUwbConvConsLen[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:CCCL
value: enums.HrpUwbConvConsLen = driver.source.bb.lrWpan.huwb.get_cccl()

Sets the constraint length of the convolutional code.

Returns:

cccl: CL3 | CL7

get_cnumber() int[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:CNUMber
value: int = driver.source.bb.lrWpan.huwb.get_cnumber()

Sets the channel number that is a 4-bit value in decimal representation. The channel number determines the bandwidth and the code index.

Returns:

channel_number: integer Range: 0 to 15

get_f_2_ms() bool[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:F2MS
value: bool = driver.source.bb.lrWpan.huwb.get_f_2_ms()

Sets the frame length of a generated waveform shorter than 2 ms to a fixed value of 2 ms. If activated, the idle interval is set to 0.0 us by default. Generated waveforms longer than 2 ms remain unaffected.

Returns:

fixed_2_ms_frame: 1 | ON | 0| OFF

get_iinterval() float[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:IINTerval
value: float = driver.source.bb.lrWpan.huwb.get_iinterval()

Sets the time of the interval separating two frames.

Returns:

iinterval: float Range: 0 to 1000000, Unit: us

get_oband() ZigbeeOperatingBand[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:OBANd
value: enums.ZigbeeOperatingBand = driver.source.bb.lrWpan.huwb.get_oband()

Requires R&S SMW-K180. Sets the operating band for 802.15.4 with O-QPSK modulation.

Returns:

oper_band: OB780 | OB868 | OB915 | OB2380 | OB2450 | OB5800 | OB6200

get_srf() bool[source]
# [SOURce<HW>]:BB:LRWPan:HUWB:SRF
value: bool = driver.source.bb.lrWpan.huwb.get_srf()

Sets the RF output frequency automatically to the value of the channel center frequency according to the selected channel number. You can still adjust the RF frequency afterwards.

Returns:

set_rf: 1 | ON | 0| OFF

set_asl(act_seg_length: HrpUwbActSegmentLength) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:ASL
driver.source.bb.lrWpan.huwb.set_asl(act_seg_length = enums.HrpUwbActSegmentLength.ASL_1024)

Sets the active segment length.

Parameters:

act_seg_length – ASL_16 | ASL_32 | ASL_64 | ASL_128 | ASL_256 | ASL_512 | ASL_1024 | ASL_2048

set_asn(acg_seg_number: HrpUwbActSegmentNum) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:ASN
driver.source.bb.lrWpan.huwb.set_asn(acg_seg_number = enums.HrpUwbActSegmentNum.ASN_1)

Requires [:SOURce<hw>]:BB:LRWPan | HUWB:STD BPRF | HPRF | EHPRF | SENS. Sets the number of active segments.

Parameters:

acg_seg_number – ASN_1 | ASN_2 | ASN_3 | ASN_4

set_cccl(cccl: HrpUwbConvConsLen) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:CCCL
driver.source.bb.lrWpan.huwb.set_cccl(cccl = enums.HrpUwbConvConsLen.CL3)

Sets the constraint length of the convolutional code.

Parameters:

cccl – CL3 | CL7

set_cnumber(channel_number: int) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:CNUMber
driver.source.bb.lrWpan.huwb.set_cnumber(channel_number = 1)

Sets the channel number that is a 4-bit value in decimal representation. The channel number determines the bandwidth and the code index.

Parameters:

channel_number – integer Range: 0 to 15

set_f_2_ms(fixed_2_ms_frame: bool) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:F2MS
driver.source.bb.lrWpan.huwb.set_f_2_ms(fixed_2_ms_frame = False)

Sets the frame length of a generated waveform shorter than 2 ms to a fixed value of 2 ms. If activated, the idle interval is set to 0.0 us by default. Generated waveforms longer than 2 ms remain unaffected.

Parameters:

fixed_2_ms_frame – 1 | ON | 0| OFF

set_iinterval(iinterval: float) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:IINTerval
driver.source.bb.lrWpan.huwb.set_iinterval(iinterval = 1.0)

Sets the time of the interval separating two frames.

Parameters:

iinterval – float Range: 0 to 1000000, Unit: us

set_oband(oper_band: ZigbeeOperatingBand) None[source]
# [SOURce<HW>]:BB:[LRWPan]:HUWB:OBANd
driver.source.bb.lrWpan.huwb.set_oband(oper_band = enums.ZigbeeOperatingBand.OB2380)

Requires R&S SMW-K180. Sets the operating band for 802.15.4 with O-QPSK modulation.

Parameters:

oper_band – OB780 | OB868 | OB915 | OB2380 | OB2450 | OB5800 | OB6200

set_srf(set_rf: bool) None[source]
# [SOURce<HW>]:BB:LRWPan:HUWB:SRF
driver.source.bb.lrWpan.huwb.set_srf(set_rf = False)

Sets the RF output frequency automatically to the value of the channel center frequency according to the selected channel number. You can still adjust the RF frequency afterwards.

Parameters:

set_rf – 1 | ON | 0| OFF

Cloning the Group

# Create a copy of the original group, that exists independently
huwb_copy = driver.source.bb.lrWpan.huwb.clone()

Subgroups