The ThreadX® CodeWarrior PluginIntroduction to the ThreadX Debugger Plugin for the Metrowerks CodeWarrior DebuggerThe advanced ThreadX RTOS awareness plugin for CodeWarrior is delivered and installed as a part of the Metrowerks CodeWarrior IDE. The plugin facilitates rapid understanding of what is happening in the ThreadX application, including information about all application threads and any other application ThreadX object.
To be able to use the plugin, you must do this: Start the Metrowerks CodeWarrior. and choose Project>Options. Select the ColdFire (or other target architecture) Debugger Settings category and choose ThreadX from the Target OS support box. Click OK.
Introduction to the Plugin The plugin introduces the following elements
in the CodeWarrior user interface. WindowsThe RTOS plugin introduces seven new debugger windows. You can right-click in most of the windows to display a context menu where you can change display format (hexadecimal/decimal). If you select the Color changes command, all window updates are highlighted. The Thread List WindowFrom the View->Processes window, select ThreadX.
This window shows a list of all threads created by the current application (by calls to tx_thread_create) and some items pertaining to their current state. The currently active thread is indicated by a state of RUNNING in the State column. The order of the threads is that of the _tx_thread_created_ptr. You can examine a particular thread by double-clicking on the corresponding row in the window. All debugger windows (Watch, Locals, Register, Call Stack, Source, Diassembly etc) will then show the state of the program from the point of view of the thread in question. A thread selected in this way is indicated in the Thread window by a different color (for the moment, a subdued blue color). Selecting a thread from the list will bring up the Threads window and that Thread’s registers will also be viewable from the View->Registers Window. The ThreadX->Thread Info display includes a Maximum stack pointer value that shows how much stack has been used thus far.
Note that if a task has been selected by double-clicking, the debugger will show the state of that particular task until another task is selected, even if execution is performed by or in another task. For example, if task A is currently active (RUNNING) and you double-click on task B, which is READY, you will see information about the suspended task B. If you now perform a single-step, the active task (A) will perform a single-step, but since you are focused on task B, not much will actually visibly change. Inspector WindowsThe seven other windows display RTOS status information of various types. These windows are formatted but passive displays of various internal RTOS data structures. Timers
Queues
Semaphores
Mutexes
Event Flag Groups
Byte Pools
Block Pools
Thread-Specific BreakpointsA thread-specific breakpoint can be invoked using the CodeWarrior conditional-breakpoint feature. After setting a breakpoint, enter the View->breakpoints and enter the condtion in the right hand column, as shown below. A thread-specific condition can be added to any breakpoint using the ThreadX symbol for the current thread or the CodeWarrior-defined keyword "mwThreadID". mwThreadID == 0xXXXXXXXX where XXXXXXXX is the Thread Control Block (TX_THREAD) address that is displayed with the thread name.
|












