Sbit

SCPI Command :

SBUS<*>:UART:SBIT
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(serialBus=SerialBus.Default) StopBits[source]
# SBUS<*>:UART:SBIT
value: enums.StopBits = driver.sbus.uart.sbit.get(serialBus = repcap.SerialBus.Default)

Sets the number of stop bits: 1 or 1.5 or 2 stop bits are possible.

Parameters:

serialBus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sbus’)

Returns:

stop_bits: B1 | B15 | B2

set(stop_bits: StopBits, serialBus=SerialBus.Default) None[source]
# SBUS<*>:UART:SBIT
driver.sbus.uart.sbit.set(stop_bits = enums.StopBits.B1, serialBus = repcap.SerialBus.Default)

Sets the number of stop bits: 1 or 1.5 or 2 stop bits are possible.

Parameters:
  • stop_bits – B1 | B15 | B2

  • serialBus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sbus’)