Sbit
SCPI Command :
BUS<*>:UART:SBIT
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(bus=Bus.Default) BusUartStopBits[source]
# BUS<*>:UART:SBIT value: enums.BusUartStopBits = driver.bus.uart.sbit.get(bus = repcap.Bus.Default)
Sets the number of stop bits: 1; 1.5 or 2 stop bits are possible.
- Parameters:
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)
- Returns:
stop_bits: B1 | B15 | B2
- set(stop_bits: BusUartStopBits, bus=Bus.Default) None[source]
# BUS<*>:UART:SBIT driver.bus.uart.sbit.set(stop_bits = enums.BusUartStopBits.B1, bus = repcap.Bus.Default)
Sets the number of stop bits: 1; 1.5 or 2 stop bits are possible.
- Parameters:
stop_bits – B1 | B15 | B2
bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)