Home
last modified time | relevance | path

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

/device/soc/st/common/platform/uart/
Dstm32mp1_uart_hw.h26 #define TX_BUF_SIZE (64) macro
92 char tx_buf[TX_BUF_SIZE];
Dstm32mp1_uart.c290 cur_size = ((size - send_size) >= TX_BUF_SIZE) ? TX_BUF_SIZE : (size - send_size); in Mp1xxUartWrite()
292 … ret = LOS_CopyToKernel((void *)uart->tx_buf, TX_BUF_SIZE, (void *)(data + send_size), cur_size); in Mp1xxUartWrite()