Introduction to Embedded Systems Flashcards
What is an embedded computing system?
Any device that includes a programmable chip that is not a general-purpose computer (a device with a chip for a specific purpose)
Is a PC an embedded system?
No
How do embedded systems optimize designs?
They do not include a lot general purpose bells and whistles
What are examples of embedded systems?
Printer, cell phone, cars/automobiles, airplanes, TVs, household applications
When was the MIT Whirlwind designed?
Late 1940s
What was the MIT Whirlwind originally designed for?
to control aircraft simulator
When was the first microprocessor released and what was it called/which company did it belong to?
the early 1970s and called the Intel 4004
What device used several devices to implement a microprocessor in 1972?
HP-35 calculator
When did automobiles start using microprocessor-based engine controllers?
1970
True or false: the early microprocessor-based engine controllers were multi-chip systems?
False
What did the engine controllers control?
fuel/air mixture and engine timing
What was an advantage to using microprocessor-based engine controllers?
lower emissions and better fuel efficiency
What are a couple microprocessor varieties?
Microcontroller and Digital Signal Processor (DSP)
What is a Microcontroller?
a microprocessor that includes I/O devices and on board memory
What is a Digital Signal Processor (DSP)?
a microprocessor optimized for digital signal processing
What are the three typical embedded word sizes?
8-, 16-, and 32-bit
How many microprocessors does a Canon EOS 3 have?
3
What is an example of a simple control microprocessor?
the front panel of a microwave oven
What is an example of one of the microprocessors in the Canon EOS 3 and what is its purpose?
32-bit Reduced Instruction Set Computing (RISC) CPU (controls autofocus and eye control systems)
What is an exampe of a digital TV’s microprocessor?
programmable CPUs with hardwired logic for video/audio decoding, menus, etc.
About how many microprocessors are in current high-end automobiles?
maybe ~100
What are some examples of the microprocessor functions in automobiles?
4-bit microcontroller to check seat belt, microcontroller to run dashboard devices, 16/32-bit microprocessor controls engine
True or False: ABS is controlled by a microprocessor?
True
What does ASC+T (Automatic stability control) do?
controls engine to improve stability
Which was introduced first: ABS or ASC+T?
ABS
What are the characteristics of an embedded system?
sophisticated functionality, real-time operation, low manufacturing cost, low power, designed on tight timelines by small teams
What is the definition of sophisticated functionality in the setting of an embedded system?
ability to run sophisticated/multiple algorithms and proved sophisticated UI
What is the meaning of ‘Real-time operation’ in the setting of an embedded system?
the computing operations must finish by deadlines
What is hard real time?
missing a deadline causes critical failure
What is soft real time?
missing a deadline causes degraded performance
What is it called when a system handles operations at widely varying rates?
a multi-rate system
What are the non-functional requirements of an embedded system?
low manufacturing costs and low power
How can an embedded system have low manufacturing cost?
mass market manufacturing, limited memory, and limited microprocessor power
Why is low power an important requirement of an embedded system?
battery power devices need lower power systems for longer battery life, and it lowers system cost for wall-powered devices
What is a common length market window?
6 month
What are some alternatives to microprocessors?
FPGAs and custom logic
Why are microprocessors better than custom logic?
more mass-market friendly, cheaper, and can use same logic to perform different functions
Why are microprocessors better than FPGAs?
simplify designs for certain product families
True or false: microprocessors use more logic for function implementation than custom logic?
true
How are microprocessors as fast as custom logic?
heavy pipe-lining, large design teams, aggressive VLSI tech
Which uses less power: microprocessors or custom logic?
custom logic
How do microprocessors improve power consumption?
features to control power consumption and software design techniques to reduce power consumption
What is a heterogeneous system?
custom logic for well defined functions and CPUs/software for everything else
What is an embedded computing platform?
hardware architecture and associated software
What are some examples of embedded computing platforms?
single-chip multiprocessors for cell phone and automotive network and processors
What are some challenges in embedded system design?
amount of hardware, meeting deadlines, minimizing power, correct functionality, ways to develop the system
How do you minimize hardware need?
CPU and memory size
What are ways to help meet deadlines?
faster hardware, cleverer software
What are ways to minimize power usage?
turning off unnecessary logic, reduce memory accesses
What do we need to consider when checking functionality of an embedded system?
having correct specifications, checking the implementation against specs, testing for real-time characteristics, testing with real data
What are the things to consider when trying to work on an embedded system?
observability, controllability, development platform
Definition of ‘performance’ in general computing?
average case, may not be well defined
In real-time systems, what does performance mean?
meeting deadlines
True or false: it is always good to finish ahead of the deadline in real-time systems?
false
True or false: in a real-time system, it is ok to miss a deadline only by a little bit?
false
What levels of abstraction do we need to analyze when trying to understand performance?
CPU, Platform, Program, Task, Multiprocessor
What is a design methodology?
a procedure for designing a system
How does having a design methodology improve the design process?
ensures you don’t skip anything
What are some tools that automate and track design methodologies?
compilers, software engineering tools, and CAD tools
What are some design goals?
Performance (speed, deadlines), Functionality/UI, Manufacturing cost, Power consumption, Other requirements (physical size, etc.)
In a top-down design, what are the levels of abstraction?
requirements -> specification -> architecture -> components -> system integration
In a bottom-up design, what are the levels of abstraction?
system integration -> components -> architecture -> specification -> requirements
True or false: real design uses both top-down design and bottom-up design?
true
What is stepwise refinement?
at each level of abstraction analyzing the design for characteristics and current state and refining to add detail
What are requirements in the setting of embedded software design?
plain language description of what the user wants and expects to get
What are three ways to develop requirements for a product?
direct customer communication, marketing reps communication, prototyping for user feedback
What are functional requirements?
output as a function of input
What are some non-functional requirements?
time required to compute output, size, weight, power consumption, reliability
What are specifications?
more precise description of a system
Characteristics of specifications:
does not imply a certain architecture, provides input to architecture design process
True or false: specifications only include functional elements?
false, they include both function and non-functional elements
What forms may specifications be in?
executable or mathematical form for proofs
What is the basis of architecture design?
major components that will satisfy the specification
What hardware components should one consider in architecture design?
CPUs, peripherals, etc.
What software components should one consider in architecture design?
major programs and their operations
What is an important process in designing hardware and software components?
architecting the system before you start coding
Must every component be designed from scratch?
no, some can be modified from existing designs and others are ready-made with no modifications necessary
What is system integration?
putting together the components
Is it ok to test everything only after it is integrated?
No, testing each component often and each step of integration makes it easier to uncover and fix bugs