Top Banner
Introduction to EMBEDDED SYSTEM Presented By SANDEEP REDDY Application Engineer Cell: 9000424550 Mail: [email protected]
21
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Introduction to Embedded Systems

Introduction to

EMBEDDED SYSTEM

Presented BySANDEEP REDDY

Application Engineer

Cell: 9000424550Mail: [email protected]

Page 2: Introduction to Embedded Systems

What is a System?

A system is a way of working, organizing or doing one or

many tasks according to a fixed plan, program or set of

rules.

A system is also an arrangement in which all its units

assemble and work together according to the plan or

program.

Page 3: Introduction to Embedded Systems

SYSTEM EXAMPLES

It is a time display SYSTEM

Parts: Hardware, Needles, Battery, Dial, Chassis and Strap

Rules

All needles move clockwise only

A thin needle rotates every second

A long needle rotates every minute

A short needle rotates every hour

All needles return to the original position after 12 hours

WATCH

Page 4: Introduction to Embedded Systems

SYSTEM EXAMPLES

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 Wash by spinning Rinse Drying Wash over by blinking Each step display the process stage In case interruption, execute only the remaining

WASHING MACHINE

Page 5: Introduction to Embedded Systems

EMBEDDED SYSTEMDefinition: An Embedded System is one that has computer hardware with software embedded in it as one of its important components.

SOFTWARE PROGRAM#include <16f876a.h>#use delay (clock=20000000)#byte PORTB=6main(){set_tris_b(0);portb=255; //decimaldelay_ms(1000);portb=0x55; //hexadecimaldelay_ms(1000);portb=0b10101010; //binarydelay_ms(500);}

HARDWARE

Its software embeds in ROM (Read Only Memory). It does not need secondary memories as in a computer

Page 6: Introduction to Embedded Systems

Other Definitions

We can define an embedded system as “A microprocessor

based system that does not look like a computer”.

Or

we can say that it is “A combination of computer hardware

and software, and perhaps additional mechanical or other

parts, designed to perform a dedicated function. In some

cases, embedded systems are part of a larger system or

product, as is the case of an antilock braking system in a

car ”.

Page 7: Introduction to Embedded Systems

An embedded product uses a microprocessor (or

microcontroller) to do one task and one task only.

A printer is an example of embedded system since the

processor inside it performs only one task; namely, getting

the data and printing it.

Page 8: Introduction to Embedded Systems

ComparisonEmbedded Systems

Few applications that are known at design-time.

Not programmable by end user. (?)

Fixed run-time requirements (additional computing power not useful).

Criteria: cost power consumption predictability …

General Purpose Computing

Broad class of applications.

Programmable by end user.

Faster is better.

Criteria: cost average

speed

Page 9: Introduction to Embedded Systems

Significance

Due to their compact size, low cost and simple

design aspects made embedded systems very popular and

encroached into human lives and have become

indispensable.

Page 10: Introduction to Embedded Systems

History

• In the earliest years of computers in 1930 – 40s, computers were sometimes dedicated to a single purpose task.

• One of the first recognizably modern embedded system was the Apollo Guidance Computer, developed by Charles Stark Draper at the MIT Instrumentation Laboratory.

Page 11: Introduction to Embedded Systems

HistorySince these early applications

in the 1960s, embedded systems have

come down in price and there has

been a dramatic rise in processing

power and functionality. The first

microprocessor for example, the

Intel 4004 was designed for

calculators and other small systems

but still required many external

memory and support chips.

Page 12: Introduction to Embedded Systems

HistoryBy the mid-1980s, most of the

common previously external system

components had been integrated into

the same chip as the processor and

this modern form of the

microcontroller allowed an even more

widespread use, which by the end of

the decade were the norm rather than

the exception for almost all

electronics devices.

Page 13: Introduction to Embedded Systems

Advantages of ES

Low cost.

Small size.

High reliability.

Fast operations.

Easy to manufacture.

Fewer interconnections.

Page 14: Introduction to Embedded Systems

Applications of ES• Medical Systems– pace maker, patient monitoring systems, injection

systems, intensive care units, …• Office Equipment– printer, copier, fax, …

• Tools– multimeter, oscilloscope, line tester, GPS, …

• Banking– ATMs, statement printers, …

• Transportation – (Planes/Trains/[Automobiles] and Boats)

• radar, traffic lights, signaling systems, …

Page 15: Introduction to Embedded Systems

Applications of ES• Automobiles– engine management, trip computer, cruise control,

immobilizer, car alarm,– airbag, …

• Building Systems– elevator, heater, air conditioning, lighting, key card

entries, locks, alarm systems, …• Agriculture– feeding systems, milking systems, …

• Space– satellite systems, …

Page 16: Introduction to Embedded Systems

Applications of ES

Household appliances:

Microwave ovens,

Television,

DVD Players &

Recorders

Page 17: Introduction to Embedded Systems

CLASSIFICATIONS OF EMBEDDED SYSTEM

1. Small Scale Embedded System

2. Medium Scale Embedded System

3. Sophisticated Embedded System

Page 18: Introduction to Embedded Systems

SMALL SCALE EMBEDDED SYSTEM

• Single 8 bit or 16bit Microcontroller.

• Little hardware and software complexity.

• They May even be battery operated.

• Usually “C” is used for developing these system.

• The need to limit power dissipation when system is running continuously.

Programming tools: Editor, Assembler and Cross Assembler

Page 19: Introduction to Embedded Systems

MEDIUM SCALE EMBEDDED SYSTEM

• Single or few 16 or 32 bit microcontrollers or Digital Signal Processors (DSP) or Reduced Instructions Set Computers (RISC).

• Both hardware and software complexity.

Programming tools:

RTOS, Source code Engineering Tool, Simulator, Debugger and Integrated Development Environment (IDE).

Page 20: Introduction to Embedded Systems

SOPHISTICATED EMBEDDED SYSTEM

• Enormous hardware and software complexity

• Which may need scalable processor or configurable processor and programming logic arrays.

• Constrained by the processing speed available in their

hardware units.

Programming Tools:

For these systems may not be readily available at a reasonable cost or may not be available at all. A compiler or retargetable compiler might have to br developed for this.

Page 21: Introduction to Embedded Systems