Smodulation
SCPI Commands :
[SOURce<HW>]:BB:DM:SMODulation:BORDer
[SOURce<HW>]:BB:DM:SMODulation:CDTDeviation
- Commands in total: 7Subgroups: 4Direct child commands: 2
- get_border() BitOrder[source]
# [SOURce<HW>]:BB:DM:SMODulation:BORDer value: enums.BitOrder = driver.source.bb.dm.smodulation.get_border()
Sets the bit order for processing extern serial data.
- Returns:
bit_order: LSBit | MSBit
- get_cdt_deviation() float[source]
# [SOURce<HW>]:BB:DM:SMODulation:CDTDeviation value: float = driver.source.bb.dm.smodulation.get_cdt_deviation()
Queries the timing deviations (time offset) between the clock and the data signals.
- Returns:
deviation: float Range: -5E-3 to 5E-3
- set_border(bit_order: BitOrder) None[source]
# [SOURce<HW>]:BB:DM:SMODulation:BORDer driver.source.bb.dm.smodulation.set_border(bit_order = enums.BitOrder.LSBit)
Sets the bit order for processing extern serial data.
- Parameters:
bit_order – LSBit | MSBit
Cloning the Group
# Create a copy of the original group, that exists independently
smodulation_copy = driver.source.bb.dm.smodulation.clone()
Subgroups