Home
last modified time | relevance | path

Searched refs:tx_get (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.4.0/subsys/console/
Dtty.c33 if (tty->tx_get == tty->tx_put) { in tty_uart_isr()
39 uart_fifo_fill(dev, &tty->tx_ringbuf[tty->tx_get++], 1); in tty_uart_isr()
40 if (tty->tx_get >= tty->tx_ringbuf_sz) { in tty_uart_isr()
41 tty->tx_get = 0U; in tty_uart_isr()
87 if (tx_next == tty->tx_get) { in tty_putchar()
255 tty->rx_get = tty->rx_put = tty->tx_get = tty->tx_put = 0U; in tty_init()
/Zephyr-Core-3.4.0/include/zephyr/console/
Dtty.h30 uint16_t tx_get, tx_put; member