# SerialStopBits

`import { SerialStopBits } from "destack:device/binding";`

Serial stop-bit mode.

```ds title="SerialStopBits"
export enum SerialStopBits {
    One = 1,
    OnePointFive = 2,
    Two = 3,
}
```

[language/library/src/device/binding/serial.ds:60:67](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/serial.ds#L60-L67)

## Variants

### `One = 1`

One stop bit.

### `OnePointFive = 2`

One and one-half stop bits.

### `Two = 3`

Two stop bits.
