Lines Matching refs:rxEvent
29 …xResult = xEventGroupSetBitsFromISR(handle->rxEvent, RTOS_UART_COMPLETE, &xHigherPriorityTaskWoken… in UART_RTOS_Callback()
37 …xResult = xEventGroupSetBitsFromISR(handle->rxEvent, RTOS_UART_RING_BUFFER_OVERRUN, &xHigherPriori… in UART_RTOS_Callback()
44 …xEventGroupSetBitsFromISR(handle->rxEvent, RTOS_UART_HARDWARE_BUFFER_OVERRUN, &xHigherPriorityTask… in UART_RTOS_Callback()
134 handle->rxEvent = xEventGroupCreateStatic(&handle->rxEventBuffer); in UART_RTOS_Init()
136 handle->rxEvent = xEventGroupCreate(); in UART_RTOS_Init()
138 if (NULL == handle->rxEvent) in UART_RTOS_Init()
156 vEventGroupDelete(handle->rxEvent); in UART_RTOS_Init()
190 vEventGroupDelete(handle->rxEvent); in UART_RTOS_Deinit()
335 ev = xEventGroupWaitBits(handle->rxEvent, in UART_RTOS_Receive()
344 (void)xEventGroupClearBits(handle->rxEvent, RTOS_UART_COMPLETE); in UART_RTOS_Receive()
354 (void)xEventGroupClearBits(handle->rxEvent, RTOS_UART_COMPLETE); in UART_RTOS_Receive()