1description: Native TTY UART
2
3include: uart-controller.yaml
4
5compatible: "zephyr,native-tty-uart"
6bus: uart
7
8properties:
9  serial-port:
10    type: string
11    description: |
12      Full path to the serial port device, such as "/dev/ttyUSB0" or
13      "/dev/ttyACM0".
14  current-speed:
15    description: |
16      Initial baud rate setting for UART. Only a fixed set of baud rates are
17      selectable on these devices.
18    enum:
19      - 1200
20      - 1800
21      - 2400
22      - 4800
23      - 9600
24      - 19200
25      - 38400
26      - 57600
27      - 115200
28      - 230400
29      - 460800
30      - 500000
31      - 576000
32      - 921600
33      - 1000000
34      - 1152000
35      - 1500000
36      - 2000000
37      - 2500000
38      - 3000000
39      - 3500000
40      - 4000000
41