Embededsystem
Embededsystem
Embededsystem
CONTENTS 2
System
Embedded System
Components of embedded system
Hardware
Features
Languages for programming
Classification
Embedded system constraints
Applications
SYSTEM 3
Rules
1.All needles move clockwise only
2.A thin needle rotates every second
3.A long needle rotates every minute
4.A short needle rotates every hour
5. All needles return to the original
position after 12 hours
5
WASHING MACHINE
It is an automatic clothes washing SYSTEM
Parts: Status display panel, Switches & Dials, Motor, Power supply &
control unit, Inner water level sensor and solenoid valve.
Rules
1. Wash by spinning
2.Rinse
3.Drying
4.Wash
over
by
blinkin
g
5. Each
EMBEDDED SYSTEM 6
Definition: An Embedded System is one that has computer
hardware with software embedded in it as one of its
important components. Its software embeds in
ROM (Read Only
Memory). It does not
need secondary memories
as in a computer
SOFTWARE PROGRAM
#include <16f876a.h>
#use delay (clock=20000000)
#byte PORTB=6
HARDWARE main()
{
set_tris_b(0);
portb=255; //decimal
delay_ms(1000);
portb=0x55; //hexadecimal
delay_ms(1000);
portb=0b10101010; //binary
delay_ms(500);
}
PROCESSOR 7
A Processor is the heart of the Embedded System.
An embedded processor is a microprocessor that is used in
an embedded system.
For an embedded system designer knowledge
of microprocessor and microcontroller is a must.
It has Hardware
Processor, Timers, Interrupt controller, I/O Devices, Memories, Ports,
etc.
CONTROL
SENSORS ACTUATO
UNIT
R
CHARACTERISTICS OF AN EMBEDDED SYSTEM
• Single-functioned − An embedded system usually performs a
specialized operation and does the same repeatedly. For example: A
pager always functions as a pager.
•Cellular telephones
•Engine controllers in
automobiles
•Calculators
• Medical equipments
•Videogames
• Disadvantages
• High development effort
• Larger time to market
33
THANK
YOU