Anembedded system is acomputer that has been built to solve only a few very specific problems and is not easily changed.[1] The wordembedded means it is built into the system. It is a permanent part in a bigger system. It usually does not look like a computer, often no keyboard or monitor or mouse. But like any computer it has aprocessor,software, input and output.
For example, the controller embedded in anelevator tells the motor to move the elevator to different floors, based on buttons that are pushed. A decoder is embedded in asatellite televisionset-top box to read a signal from the dish and send something that a TV understands. Often this type of system must do its work in a specific amount of time. This is calledreal-time computing. If a set-top box got interrupted to do another task, you would see a bad picture on the TV, for example. A general purpose computer will often have short pauses while it does something else, it is not real-time.
Embedded systems control many of the commondevices such as card readers in hotel door locks or several things in a car. They can control small things like anMP3 player or adigital camera, and large things liketraffic light systems,airplanes, orassembly lines in a factory.
They do not look like a computer - there may not be amonitor or akeyboard.
Many embedded systems must be able to do things inreal-time - in a short amount of time (almost instantly from a human view).
Many embedded systems must be very safe and reliable, especially for medical devices oravionics controlling airplanes.
Starts very quickly. People don't want to wait a minute or two for their car or emergency equipment to start.
It may use a special operating system (or sometimes a very small home-made OS) that helps meet these requirements called areal-time operating system.
The program instructions written for embedded systems are referred to asfirmware, and are stored inread-only memory orflash memory chips. They run with limitedcomputer hardware resources: little memory, small or non-existent keyboard and/or screen.
Embedded systems are not always standalone devices. Sometimes they are built as a set, like the various parts of a car - the radio, the throttle control, thepollution control, etc.[2] Sometimes they can communicate to the internet or a cell-phone network and they may have aUSB reader or other connections.
An example of a user interface with buttons and a simpleLCD display.
Embedded systems range from nouser interface at all — only sending and receiving electric signals — to a fullgraphical user interface like on a modern computer. Quite often they will have a fewpush-buttons and a small display and someLEDs. A more complex system may have atouch screen, allowing the meaning of the buttons to change with each screen as insmart phones.
The most important chip is thecentral processing unit or CPU. This runs the software instructions. It can be a standardmicroprocessor or amicrocontroller. Microcontrollers include the microprocessor as well as simpleperipheral equipment so the system can be smaller and cheaper. They have less flexibility because those parts cannot be changed. Usually these parts includeFlash memory and support forserial ports,USB, etc.
Unlike a microprocessor for a general-purpose computer, bigger and faster is not always better. Many embedded processors are very small. Sometimes this is to use less space or less power, sometimes it is to be cheaper. General-purpose computers will use microprocessors that read 32-bit or 64-bit words and run at speeds measured in GHz, but embedded processors are usually 4 to 32 bits and run at speeds usually measured in tens of MHz (a hundred times slower). (But the programs are also smaller and do not check for things that are not used).
Sometimes it may be easier to use acircuit board that is already made. These usually share manycomponents with general purpose computers, but are smaller than one in a general purpose computer. Boards such as the VIA EPIA can runMicrosoft Windows. The advantage is that it saves someelectrical engineering time and can use the samesoftware development tools used for PC-type software development. Examples of such embedded devices are theATMs or displays incasinos. This works well if the real-time requirements are not strict (it doesn't matter much if a job takes eight seconds instead of five, for example).
Embedded systems often do not need a fulloperating system. Some use specially-built small and simple operating systems that start very quickly, others do not need one at all. Embedded systems are not adapted as easily, but they are built to perform their tasks much more reliably. Because the hardware is simpler, it is also often cheaper to build and runs faster. In contrast to this, a general-purpose computer needs to be ready for newdevice drivers and software to runhardware it doesn't know about yet, like new printers orhard drives. It needs to run different application programs.
As embedded systems get bigger, things that used to be only on general-purpose computers or evenmainframes are now becoming common on embedded systems. This includes protected memory space, andopen programming environment includingLinux,NetBSD, etc.
Some examples of operating systems, from simple to complex:
Simple control loop - Atimer and a loop is used to call differentsubroutines repeatedly. This is often made by one person for smaller systems.
interrupt controlled - Thetasks are started by different kinds of events. The event could be something timed (every ten seconds, for example) or by a button press or data received.
non-preemptivemultitasking - Each task gets its turn to run, and when it finishes it calls ascheduler in the OS to run the next task.
preemptive multitasking or multi-threading - A task can be stopped after some amount of time to let another task run for a while. No task can hog the system. At this level the system is considered to have an "operating system"kernel and can runtasks inparallel. This type of OS is usually bought from a company that only works on embedded operating systems.
Real-time operating systems include products likeMicroC/OS-II, Green Hills INTEGRITY,QNX orVxWorks. UnlikeMacOS orWindows 7, these operating systems are not known very well by most people. But they are used in many places where time and safety is very important. People use them every day and do not realise it.
Common examples of larger kernels areEmbedded Linux andWindows CE. Although these do not have the tight time limits needed for a strict real-time system, they are becoming more common, especially for more powerful devices such asWireless Routers andGPS. They allow re-use of code in thepublic domain forDevice Drivers,Web Servers,Firewalls, and other code. Software developers that are more comfortable writing applications for PCs will find this more familiar as well. If needed, an FPGA or other special hardware can be used for things that do need tight time limits.
An in-circuit debugger, a hardware device that connects to the microprocessor via aJTAG interface. This starts and stops the microprocessor from outside as it runs the software. It also allows memory and registers to be read, and to store the software program in memory.
External debugging using logging or serial port output to trace operation using either a flashing monitor (printfs).
Interactive resident debugging - if the OS supports it, this is a shell on the embedded processor that runs commands typed by the developer (Linux, for example).
Anin-circuit emulator replaces the microprocessor on the board, providing full control over everything the microprocessor could do.
A completeemulator simulates all the features of the hardware, allowing all of it to be controlled and modified. The hardware doesn't really exist, but a pretend version of it (a"virtual" machine) is on a normal PC.
Checking external lines with a logic analyzer ormultimeter.
Unless restricted to external debugging, the programmer can typically load and run software through the tools, view the code running in the processor, and start or stop its operation. The view of the code may be asassembly code orsource-code. Some integrated systems (likeVxWorks orGreen Hills) have special features, like keeping track of how much space the software takes as it runs, what tasks are running, and when things happen.
Depending on what kind of embedded system is being made will affect how it can be debugged. For instance, debugging a single microprocessor system is different from debugging a system where processing is also done on a peripheral (DSP, FPGA, co-processor).
Embedded systems are often in machines that are expected to run for years without errors, and in some cases recover by themselves if an error occurs. This means the software is usually developed and tested more carefully than that for personal computers, and unreliable mechanical moving parts such asdisk drives and fans are avoided.
Places where safety and reliability are important:
The system could kill people if it fails, such as aircraft controls, chemical factory controls,train signals, and heartdefibrillators.
The system will lose large amounts of money if it is shut down or if a mistake is made: Telephone switches, factory controls,cash registers,automated teller machines.
Ways to recover from errors — both software bugs such asmemory leaks, and alsosoft errors in the hardware:
Watchdog timer that restarts the embedded system if something stops working.
Duplicate parts, where one system can take over if another one stops working.
Software "limp modes" that provide partial function.