Create a basic ThreadX application that runs multiple threads cooperatively and prints out their basic status. - [ ] Create 2 or 3 simple threads with different priorities. - [ ] Implement a simple way to track thread activity (such as counting how many times each thread runs) and overall system uptime. - [ ] Have a dedicated reporter thread periodically print this runtime information over the UART console. - [ ] Use `tx_thread_sleep()` to allow lower-priority threads to execute.
Create a basic ThreadX application that runs multiple threads cooperatively and prints out their basic status.
Create 2 or 3 simple threads with different priorities.
Implement a simple way to track thread activity (such as counting how many times each thread runs) and overall system uptime.
Have a dedicated reporter thread periodically print this runtime information over the UART console.
Use
tx_thread_sleep()to allow lower-priority threads to execute.