Top Banner
CprE 288 – Introduction to Embedded Systems Exam 2 Review http://class.ece.iastate.edu/cpre288 1 Instructor: Dr. Phillip Jones
18

CprE 288 Introduction to Embedded Systems Exam 2 Review

May 09, 2022

Download

Documents

dariahiddleston
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: CprE 288 Introduction to Embedded Systems Exam 2 Review

CprE 288 – Introduction to Embedded Systems Exam 2 Review

http://class.ece.iastate.edu/cpre288 1

Instructor:

Dr. Phillip Jones

Page 2: CprE 288 Introduction to Embedded Systems Exam 2 Review

Announcements

http://class.ece.iastate.edu/cpre288 2

Page 3: CprE 288 Introduction to Embedded Systems Exam 2 Review

EXAM

http://class.ece.iastate.edu/cpre288 3

Page 4: CprE 288 Introduction to Embedded Systems Exam 2 Review

Overview

• Exam 1:

– Open textbook, datasheet, 1 page of notes, and calculator allowed

– Electronic textbook and electronic Datasheet is fine. Nothing else

on your electronic device can be used or you will receive an F for

CPRE 288

http://class.ece.iastate.edu/cpre288 4

Page 5: CprE 288 Introduction to Embedded Systems Exam 2 Review

Exam Topics

Programming TMC4123 I/O modules and functions

– GPIO Configuration

– USART

– ADC

– Input capture (Timer/Counter)

– Output compare (Timer/Counter)

• Generating waves (PWM mode, Periodic Mode)

– General Timer Modes

– General Datasheet comprehension and usage

– CPRE 288 Datasheet Trainer

On each subject, be familiar with

– Application background, working principles, and related concepts

– Programming interface

– Writing C functions for common purposes

– Typical application scenarios http://class.ece.iastate.edu/cpre288 5

Page 6: CprE 288 Introduction to Embedded Systems Exam 2 Review

Exam Questions

Some common question styles

• Short questions

– Conceptual

– Analysis

– Calculation

• Programming: for a given application

– Initialize an I/O module

– Access I/O data

– Interrupt programming

http://class.ece.iastate.edu/cpre288 6

Page 7: CprE 288 Introduction to Embedded Systems Exam 2 Review

Exam Questions: Data Sheet, Read it & ask questions

• Flavors of some potential Exam 2 questions

– Program configuration registers to meet given requirements • UART, ADC, Input Capture, Output Compare, Timers, Interrupts

• There is a section for each device mentioned above in the data sheet

– Based on a given configuration, answer questions about how a

program will behave • E.g. How long will something take to occur?

• E.g. How many times a second will something occur?

– Explain why a given configuration is incorrect for implementing a

specified behavior

– Assuming a given configuration, write a short program to implement

a specific behavior

– ADC calculation problems http://class.ece.iastate.edu/cpre288 7

Page 8: CprE 288 Introduction to Embedded Systems Exam 2 Review

Exam Preparation

How to prepare

• Prepare your 1-page of notes, based on assigned Data Sheet /

Textbook readings.

• Review/redo homework

– Gives practice applying your notes and improving Proficiency

and Efficiency of reading the Data Sheet

• Review Labs

• Review the lecture slides

– Read datasheet as needed for more detail

• Ask questions

– Come to Office hours

– Appointments

– Emails http://class.ece.iastate.edu/cpre288 8

Page 9: CprE 288 Introduction to Embedded Systems Exam 2 Review

USART

http://class.ece.iastate.edu/cpre288 9

Page 10: CprE 288 Introduction to Embedded Systems Exam 2 Review

USART: Serial Communication

• USART = Universal Synchronous & Asynchronous

Serial Receiver & Transmitter

– We only studied the Asynchronous part (UART)

• Serial communication: Data is transmitted bit by bit at

the physical layer of network

– Can transmit over long link distances

– Uses start and stop to sandwich data bits

– parity bit can be used for error detection

http://class.ece.iastate.edu/cpre288 10

Page 11: CprE 288 Introduction to Embedded Systems Exam 2 Review

Baud Rate and Frame Format

Important concepts

• Baud rate: Number of symbols transmitted per second

from the transmitter to the receiver

– It’s also the rate of symbol changes to the transmission media

• Frame format: The format of a single data packet

– USART transmits one data packet per request

– One data packet contains a single data character, plus start bit,

stop bit(s), and optional parity bit

http://class.ece.iastate.edu/cpre288 11

Page 12: CprE 288 Introduction to Embedded Systems Exam 2 Review

12

Frame Format

Start bit: logic low, 1 bit

Data bits: 5, 6, 7, 8, or 9 bits

Parity bit: Optional 1 bit, Odd, Even or none

Stop bit: logic high, 1 bit or 2 bits

Both sides of communication should use the same

frame format and baud rate

Page 13: CprE 288 Introduction to Embedded Systems Exam 2 Review

ADC

http://class.ece.iastate.edu/cpre288 13

Page 14: CprE 288 Introduction to Embedded Systems Exam 2 Review

Sensors and ADC

Assuming a linear sensor (not always the case), and a liner ADC (nearly

always the case)

Equation of a line: y = mx + b

• Manually converting from a physical characteristic to the digital output of

a ADC for use by software entails applying the equation of a line twice

1) Sensor: use equation of a line to convert physical property to a

voltage

2) ADC: use equation of a line to convert voltage to a digital number

http://class.ece.iastate.edu/cpre288 14

Page 15: CprE 288 Introduction to Embedded Systems Exam 2 Review

15

Sensor and ADC

A/D

A/D input

Digital output

T_min = 0 C

T_max = 200 C

Analog Sensor Output (V)

Sensor_Vmin = 0 Vmax = 3.3V

Temperature vs. Voltage (Sensor Specification)

Sensor Input (T)

A/D_Vmin = 0 V

A/D_Vmax=3.3V

Digital Output (D)

D = 0 Dmax = 1023

A/D: Analog Input vs. Digital Output (M = 2n-1 steps (or bins):Dmax =Vmax )

A/D Input (V)

10-bit

Temperature Sensor

Sensor output

Page 16: CprE 288 Introduction to Embedded Systems Exam 2 Review

16

Sensor and ADC

A/D

A/D input

Digital output

T_min = 0 C

T_max = 200 C

Analog Sensor Output (V)

Sensor_Vmin = 0 Vmax = 3.3V

Temperature vs. Voltage (Sensor Specification)

Sensor Input (T)

A/D_Vmin = 0 V

A/D_Vmax=3.3V

Digital Output (D)

D = 0 Dmax = 1023

A/D: Analog Input vs. Digital Output (M = 2n-1 steps (or bins):Dmax =Vmax )

A/D Input (V)

10-bit

Temperature Sensor

Sensor output

100 C

1.65V

= 515

60.61 C/V Slope = Sensitive

.0032 V/bit Slope = Resolution

Page 17: CprE 288 Introduction to Embedded Systems Exam 2 Review

INPUT CAPTURE AND OUTPUT COMPARE

http://class.ece.iastate.edu/cpre288 17

Page 18: CprE 288 Introduction to Embedded Systems Exam 2 Review

18

Input Capture and Output Compare

Input capture and output compare work with digital

waveforms

IC: Recognize waveforms by capturing the time of events

OC: Generate waveforms by setting the time of events

TMC4123 has several Timer modes

http://class.ece.iastate.edu/cpre288