Design Article
Comment
Luis Sanchez
Upps... thanks for the correction. I see now that it's only 32 bit and 64 bit.
cmathas
Please note that the screen shots have now been corrected to show a larger ...
Integrating IDE and RTOS for ARM-based development
John Carbone, Express Logic
7/11/2012 1:45 AM EDT
Embedded systems employing ARM 32-bit processors support application software that can deliver excellent product functionality and benefits. Faced with the challenge of developing such applications, developers seek robust, powerful development tools to help them bring complex products to market faster that are optimized to perform better than the competition.
[ARM TechCon 2012, the largest ARM design ecosystem under one roof, is Oct. 30 - Nov. 1 in Santa Clara. Click here to check out agenda.]
Rather than settling for "free" or "cheap" tools, commercial developers recognize the benefits of paying more for quality tools and achieving quality results. In this rapidly evolving and competitive market, only the strongest will survive. Manufacturers are well advised to consider the ROI from the best tools available, rather than to seek the lowest cost tools that might leave their product with a competitive handicap in time-to-market and performance.
Developers today need a comprehensive development environment (IDE) and a real-time operating system (RTOS) to help them develop and achieve optimal performance for their application. But not only do developers need the best IDE and RTOS they can find, they need them to operate together to achieve maximum benefits. Each must be of high quality in its own right, but beyond that, they must be engineered to work together and to support each other’s strengths.
The steps involved in the development of an embedded application are similar across the spectrum from small to large. A simple example can therefore be used to illustrate how the capabilities of an integrated IDE and RTOS make real product development easier and more effective. The Host-Target configuration might look something like this:

Developing an embedded application involves many steps, including:
- Application design
- Write source code
- Compile code
- Link libraries
- Download executable to a target board
- Run the program on the target
- Set breakpoints
- Stop the program
- Analyze data from the running application
Each of these steps can be handled by an IDE, with its component editor, compiler, linker, and debugger.
Especially in the more complex applications, the developer might elect to use an RTOS to schedule application threads, pass messages, and use semaphores and mutexes. The RTOS also should be able to capture event trace information in real time, and enable those events to be viewed graphically on the host. This is critical in a real-time system, since so much happens so quickly that a “big picture” view helps sort things out. An event trace display shows exactly what RTOS services and application-defined events each thread has performed. It also can collect and summarize performance statistics including a complete execution profile, a summary and individual display of all context switches, and a wealth of other useful information.
An example application
To illustrate how these RTOS/IDE capabilities can work together to help the developer, consider a simple application. The application consists of 8 threads, "thread_0" through "thread_7." These threads each perform a particular function in an endless loop. The threads are each assigned a priority, from 0 (the highest) to 1024 (the lowest). At any point in time, the RTOS runs the highest priority thread that is “READY” to run. A thread is READY when it is not waiting for anything outside of its own code – for example, waiting for a message to arrive from another thread. In such instances of waiting, a thread is "SUSPENDED" and is not READY to run. Here is a summary of what each thread does:

The RTOS
A priority-based, preemptive scheduling RTOS, ThreadX, is used in this demo to manage the eight application threads. Using this example, developers can also understand several services, including messaging, semaphores, mutexes, and sleep and experiment with them in code of their own.
To follow the application’s flow and specific actions, the RTOS time-stamps each event and stores related information regarding the event in a circular buffer on the target. This buffer is uploaded to the host and displayed there to reveal the time-based flow of events.
The IDE
IAR Embedded Workbench for ARM is the development IDE for this demo. This IDE has been tightly integrated with the RTOS, and 4 areas of integration are noteworthy:
- Project Compatibility. The RTOS is provided in a format that enables it to be used from within the IDE’s project structure. All source code is syntax compatible with the IDE’s compilers and assemblers, making the RTOS ready to use right out-of-the-box.
- RTOS Awareness. This IDE plug-in captures and displays a wealth of information for all application threads and other defined objects, each time the system is stopped (at a breakpoint or a HALT command).

One such display, shown above, is the “Execution Profile.” This is a unique information capture and display that shows profiling information for the application’s threads, interrupt system, and idle time, with a separate breakdown by thread. Note the overall application profile, showing the breakdown of execution time by Idle, Interrupt, and Application. Also, note the individual thread performance profile. As you can see, threads 1 and 2 indeed dominate performance, as described earlier.
- Macro Operations. Using the IDE’s Macro capability, the IDE can automatically and optionally upload the trace buffer to the Host at a breakpoint. This simplifies and speeds up the process of running the program and then viewing the event trace to see what happened.
- Launch an External Tool. Another convenient capability enables the launch of an external tool through the “Tools” menu. This can be used to quickly and easily launch a software systems event analyzer—from the IDE.


GeorgeSand
7/12/2012 9:07 AM EDT
It is impossible to see anything on those pictures.
Sign in to Reply
cmathas
7/16/2012 7:20 PM EDT
Please note that the screen shots have now been corrected to show a larger option. Thank you for your patience and for taking the time to comment.
Sign in to Reply
cmathas
7/12/2012 1:01 PM EDT
You're right. New graphics have been requested. Stay tuned.
Sign in to Reply
Luis Sanchez
7/15/2012 2:59 AM EDT
I didn't know that an RTOS could be synchronized through the IDE.
ARM MCU's are all over the place. From 8 bit to 32 bit. Learning about the ARM architecture is a good idea to ensure landing a job or atleast keep the current one. Hope we can get better graphic soo,!
Sign in to Reply
KB3001
7/15/2012 7:47 AM EDT
"ARM MCU's are all over the place. From 8 bit to 32 bit. "
?
Sign in to Reply
Luis Sanchez
7/21/2012 2:16 PM EDT
Upps... thanks for the correction. I see now that it's only 32 bit and 64 bit.
Sign in to Reply