We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
The RTX RTOS provides users a configuration UI to configure RTOS parameters. In the configuration UI, there is a item called "Number of concurrent user threads" under "Thread configuration".
What does this item mean ? The keil explains that it means: Indicates the maximum number of threads that will run at the same time (including main).
Does it count timer and idle thread ?
thanks.
It does not include the timer thread or the idle thread. If you define it as 6, you will have 1 idle thread, 1 timer thread (if you enabled this) and up to 6 threads of your own.
Thanks for your explanation.