Home
last modified time | relevance | path

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

/AliOS-Things-master/components/drivers/peripheral/uart/include/aos/
A Dtty_core.h16 #ifndef AOS_TTY_TX_BUF_SIZE
17 #define AOS_TTY_TX_BUF_SIZE 1024 macro
38 uint8_t tx_buf[AOS_TTY_TX_BUF_SIZE];
/AliOS-Things-master/components/drivers/peripheral/uart/src/
A Dtty.c26 ((AOS_TTY_TX_BUF_SIZE + (tty)->tx_buf_head - (tty)->tx_buf_tail) & (AOS_TTY_TX_BUF_SIZE - 1))
27 #define tx_buf_space(tty) (AOS_TTY_TX_BUF_SIZE - 1 - tx_buf_count(tty))
470 tty->tx_buf_head &= AOS_TTY_TX_BUF_SIZE - 1; in tx_buffer_produce()
601 event_mask = tx_space_to_event(AOS_TTY_TX_BUF_SIZE - 1); in dev_tty_get()
728 tty->tx_buf_tail &= AOS_TTY_TX_BUF_SIZE - 1; in aos_tty_tx_buffer_consume()

Completed in 4 milliseconds