2025-10-14 7:22 PM - edited 2025-10-14 7:24 PM
Hi all,
Is there documentation that shows the ThreadX functions with an explanation of the function's parameter? and which are mandatory and which optional?
This is an example of a simple function call generated by cubeMX:
/* Create tx first thread. */
tx_thread_create(&tx_app_thread, "tx first thread", tx_first_thread_entry, 0, pointer,
TX_APP_STACK_SIZE, TX_APP_THREAD_PRIO, TX_APP_THREAD_PREEMPTION_THRESHOLD, TX_APP_THREAD_TIME_SLICE, TX_APP_THREAD_AUTO_START)
I can tell what some of the parameters are by looking at their name but not all of them. I read "Azure RTOS ThreadX User Guide" from Microsoft. I've looked at the STM32 wiki and the threadX documentation on github but I can't find a document just for the functions calls (threads, semaphore, queues, etc) and its parameters (even a summary would be good). Is there such a document?
Thanks
2025-10-14 8:28 PM - edited 2025-10-14 8:33 PM
You can find also in GitHub - eclipse-threadx/rtos-docs
Do not forget to mark as solution accepted, if you agree