Uses of Class
ioio.lib.api.Uart.StopBits

Packages that use Uart.StopBits
ioio.lib.api   
ioio.lib.impl   
 

Uses of Uart.StopBits in ioio.lib.api
 

Methods in ioio.lib.api that return Uart.StopBits
static Uart.StopBits Uart.StopBits.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Uart.StopBits[] Uart.StopBits.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in ioio.lib.api with parameters of type Uart.StopBits
 Uart IOIO.openUart(DigitalInput.Spec rx, DigitalOutput.Spec tx, int baud, Uart.Parity parity, Uart.StopBits stopbits)
          Open a UART module, enabling a bulk transfer of byte buffers.
 Uart IOIO.openUart(int rx, int tx, int baud, Uart.Parity parity, Uart.StopBits stopbits)
          Shorthand for #openUart(ioio.lib.api.DigitalInput.Spec, ioio.lib.api.DigitalOutput.Spec, int, Parity, StopBits) , where the input pins use their default specs.
 

Uses of Uart.StopBits in ioio.lib.impl
 

Methods in ioio.lib.impl with parameters of type Uart.StopBits
 Uart IOIOImpl.openUart(DigitalInput.Spec rx, DigitalOutput.Spec tx, int baud, Uart.Parity parity, Uart.StopBits stopbits)
           
 Uart IOIOImpl.openUart(int rx, int tx, int baud, Uart.Parity parity, Uart.StopBits stopbits)
           
 void IOIOProtocol.uartConfigure(int uartNum, int rate, boolean speed4x, Uart.StopBits stopbits, Uart.Parity parity)