Hdb
SCPI Commands :
[SOURce<HW>]:BB:WLAY:PCONfig:HDB:DMCS
[SOURce<HW>]:BB:WLAY:PCONfig:HDB:SCRS
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_dmcs() int[source]
# [SOURce<HW>]:BB:WLAY:PCONfig:HDB:DMCS value: int = driver.source.bb.wlay.pconfig.hdb.get_dmcs()
Sets the differential EDMG modulation and coding scheme (MCS) . The corresponding field is a 2-bit field after the Base MCS field of the EDMG-Header-B field.
- Returns:
diff_mcs: integer Range: 0 to 3
- get_scrs() int[source]
# [SOURce<HW>]:BB:WLAY:PCONfig:HDB:SCRS value: int = driver.source.bb.wlay.pconfig.hdb.get_scrs()
Sets the scrambler seed value. The corresponding field is a 7-bit field at the beginning of the EDMG-Header-B field.
- Returns:
scra_seed: integer Range: 0 to 63
- set_dmcs(diff_mcs: int) None[source]
# [SOURce<HW>]:BB:WLAY:PCONfig:HDB:DMCS driver.source.bb.wlay.pconfig.hdb.set_dmcs(diff_mcs = 1)
Sets the differential EDMG modulation and coding scheme (MCS) . The corresponding field is a 2-bit field after the Base MCS field of the EDMG-Header-B field.
- Parameters:
diff_mcs – integer Range: 0 to 3
- set_scrs(scra_seed: int) None[source]
# [SOURce<HW>]:BB:WLAY:PCONfig:HDB:SCRS driver.source.bb.wlay.pconfig.hdb.set_scrs(scra_seed = 1)
Sets the scrambler seed value. The corresponding field is a 7-bit field at the beginning of the EDMG-Header-B field.
- Parameters:
scra_seed – integer Range: 0 to 63
Cloning the Group
# Create a copy of the original group, that exists independently
hdb_copy = driver.source.bb.wlay.pconfig.hdb.clone()
Subgroups