Searched defs:tty_serial (Results 1 – 1 of 1) sorted by relevance
18 struct tty_serial { struct19 const struct device *uart_dev;21 struct k_sem rx_sem;22 uint8_t *rx_ringbuf;23 uint32_t rx_ringbuf_sz;24 uint16_t rx_get, rx_put;25 int32_t rx_timeout;27 struct k_sem tx_sem;28 uint8_t *tx_ringbuf;52 int tty_init(struct tty_serial *tty, const struct device *uart_dev); argument