aboutsummaryrefslogtreecommitdiff
path: root/flow-core/src/main/scala/com/github/jodersky/flow/Parity.scala
blob: 04d64a9f73c0d2a10c1780be652260bc6943d9ea (plain) (blame)
1
2
3
4
5
6
7
8
9
package com.github.jodersky.flow

/** Specifies available parities used in serial communication. */
object Parity extends Enumeration {
  type Parity = Value
  val None = Value(0)
  val Odd = Value(1)
  val Even = Value(2)
}