Skip to main content
Visitor II
February 26, 2023
Solved

Equivalent function in Azure RTOS ThreadX

  • February 26, 2023
  • 1 reply
  • 1108 views

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

    This topic has been closed for replies.
    Best answer by Piranha

    The tx_queue_send() with TX_NO_WAIT does exactly the same.

    1 reply

    PiranhaAnswer
    Graduate II
    February 27, 2023

    The tx_queue_send() with TX_NO_WAIT does exactly the same.