aboutsummaryrefslogtreecommitdiff
path: root/sync/src/main/scala/akka/serial/SerialSettings.scala
blob: 56345ae4dca071b4ca3d4cfc00850ca0ca00f63a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package akka.serial

/**
 * Groups settings used in communication over a serial port.
 * @param baud baud rate to use with serial port
 * @param characterSize size of a character of the data sent through the serial port
 * @param twoStopBits set to use two stop bits instead of one
 * @param parity type of parity to use with serial port
 */
case class SerialSettings(baud: Int, characterSize: Int = 8, twoStopBits: Boolean = false, parity: Parity.Parity = Parity.None)