Embedded Systems
processr.txt
Associated article: Determining Processor Utilization
Tags: Open Source Embedded Systems
Published source code accompanying the article by Byron Miller in which he points out that performance requirements are often considered after the fact when it comes to selecting processors for embedded products. He then presents techniques for determining processor utilization.
Determining Processor Utilization
by Byron Miller
Listing One
Null_task
{
loop
{
Typically, nop code goes here, althought
user-specific code may be inserted here
}
forever // loops until preempted by a higher priority task
}
Listing Two
(a)
null_task
{
loop
{
set output ...


