Home
last modified time | relevance | path

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

/hal_espressif-3.5.0/components/driver/
Duart.c134 SemaphoreHandle_t tx_fifo_sem; /*!< UART TX FIFO semaphore*/ member
836 xSemaphoreGiveFromISR(p_uart->tx_fifo_sem, &HPTaskAwoken); in uart_rx_intr_handler_default()
1210 … if (pdTRUE == xSemaphoreTake(p_uart_obj[uart_num]->tx_fifo_sem, (portTickType)portMAX_DELAY)) { in uart_tx_all()
1235 xSemaphoreGive(p_uart_obj[uart_num]->tx_fifo_sem); in uart_tx_all()
1417 if (uart_obj->tx_fifo_sem) { in uart_free_driver_obj()
1418 vSemaphoreDelete(uart_obj->tx_fifo_sem); in uart_free_driver_obj()
1510 uart_obj->tx_fifo_sem = xSemaphoreCreateBinaryStatic(uart_obj->tx_fifo_sem_struct); in uart_alloc_driver_obj()
1512 !uart_obj->tx_done_sem || !uart_obj->tx_fifo_sem) { in uart_alloc_driver_obj()
1533 uart_obj->tx_fifo_sem = xSemaphoreCreateBinary(); in uart_alloc_driver_obj()
1535 !uart_obj->tx_done_sem || !uart_obj->tx_fifo_sem) { in uart_alloc_driver_obj()
[all …]