Polarity
SCPI Command :
SBUS<*>:MANCh:DATA:POLarity
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(serialBus=SerialBus.Default) SbusManchDataPolarity[source]
# SBUS<*>:MANCh:DATA:POLarity value: enums.SbusManchDataPolarity = driver.sbus.manch.data.polarity.get(serialBus = repcap.SerialBus.Default)
Sets the polarity for the data line.
- Parameters:
serialBus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sbus’)
- Returns:
data_polarity: MANC | MANT
MANC: Selects the Manchester data representation convention as per G. E. Thomas: High-to-low transition for logical 1.
MANT: Selects the Manchester II (Manchester Two) data representation convention as per IEEE 802.3: Low-to-high transition for logical 1.
- set(data_polarity: SbusManchDataPolarity, serialBus=SerialBus.Default) None[source]
# SBUS<*>:MANCh:DATA:POLarity driver.sbus.manch.data.polarity.set(data_polarity = enums.SbusManchDataPolarity.MANC, serialBus = repcap.SerialBus.Default)
Sets the polarity for the data line.
- Parameters:
data_polarity –
MANC | MANT
MANC: Selects the Manchester data representation convention as per G. E. Thomas: High-to-low transition for logical 1.
MANT: Selects the Manchester II (Manchester Two) data representation convention as per IEEE 802.3: Low-to-high transition for logical 1.
serialBus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sbus’)