cancel
Showing results for 
Search instead for 
Did you mean: 

Equivalent function in Azure RTOS ThreadX

MStew.1
Associate III

I want to switch from FreeRTOS to Azure RTOS ThreadX.

In FreeRTOS there is the function xQueueSendToBackFromISR() - It is used to write data to the queue from an interrupt service routine. FreeRTOS interrupt provides an interrupt safe version of queue API to read and write data from queues using ISR.

https://www.freertos.org/xQueueSendToBackFromISR.html

And I am looking for the equivalent function in Azure RTOS ThreadX.

I looked up the documentation on Microsoft website and went through the functions but it seems that there is no such function in Azure RTOS ThreadX? https://learn.microsoft.com/en-us/azure/rtos/threadx/chapter4

1 ACCEPTED SOLUTION

Accepted Solutions
Piranha
Chief II

The tx_queue_send() with TX_NO_WAIT does exactly the same.

View solution in original post

1 REPLY 1
Piranha
Chief II

The tx_queue_send() with TX_NO_WAIT does exactly the same.