Robotic Systems ECE 401RB Fall 2007

Size: px
Start display at page:

Download "Robotic Systems ECE 401RB Fall 2007"

Transcription

1 Robotic Systems ECE 401RB Fall 2007 Lecture 7: Processors Part 1 The following notes are from: Chapter 12, G. McComb, and M. Predko, Robot Builder's Bonanza, Third Edition, Mc- Graw Hill, I. Introduction Some consider machines to be robots if they are at least remote controlled. But this leaves the intelligence in the hands of the remote controller. These robots may still have sensors. But the sensor information must be sent to the remote controller to make the control decisions. What types of sensors might provide this type of feedback to a remote controller? Touch Vision Chemical Maybe sound But most would say a robot needs to have autonomy. Receive sensor inputs. Process and interpret the sensor inputs. Make decisions. According to some plan or objective. - Carrying out specific, pre-planned actions. In response to sensor inputs. - Adjusting the plan given sensor inputs. - Responding to unexpected sensor inputs. - Like those that indicate danger to the robot. Lecture 7, Page 1 of 21

2 A computer of one type or another, therefore, needs to be present within a robot. Can consist of a simple assortment of electronic components. Up to an advanced computer. And the computer must be able to interface with all of the other parts of the robot. Sensors Motors Power distribution II. Intelligence from Discrete Components Discrete components can be used by themselves to control a robot. No microprocessor. Using transistors, resistors, etc. Given the knowledge from your lab, how could a light following robot be designed purely from discrete components? Light sensor could be used as a switch. Turn on the motors when the light is in front of the robot. Lecture 7, Page 2 of 21

3 This makes the robot reverse direction upon seeing bright light. Light shining on the photodetector turns on the circuit. Which turns on a relay to reverse the motor. You can also reverse the polarities to make the robot follow the light instead. No turning is possible for this simple case. How could the robot be improved to turn to follow the light? Two light sensors. One connected with each motor. The designer is the one providing the intelligence here, not much from the robot. - Although sensing the light is a very simple form of intelligence. Lecture 7, Page 3 of 21

4 Additional simple circuitry could be added. A 555 timer could be used to create time delays. For example, run for 5 seconds then stop. To wait a time delay before moving. Etc. The biggest problem with this type of robot is configurability. Hardware changes are required each time the behavior of the robot is to be changed. New wiring. Using breadboards, but breadboards can have loose connections. III. Line Tracing Example This can be accomplished using a few integrated logic circuits and a small assortment of transistors and resistors. Assume some kind of high contrast line is placed on the floor. White on black or black on white does not matter. Use an LED to illuminate below the robot and a phototransistor to sense the reflected light. These two devices paired together in a package are commonly available. Mount detectors on the bottom for the robot. Two detectors set apart roughly twice the width of the line. Lecture 7, Page 4 of 21

5 Then use a sensor circuit that provides an output if the light is detected. R2 determines the sensitivity of the phototransistor and its voltage range. The output is sent to a comparator circuit. Lecture 7, Page 5 of 21

6 These are integrated into an overall motor control circuit. And finally, relays control the motors. Lecture 7, Page 6 of 21

7 Here is the list of parts used for this example. Adjustments The robot may waddle it was down the track. - Overcorrecting for errors each time. This depends on the switching speed of the relays. - Faster-acting relays would create smoother movement. Also, the sensors could be placed a different distance apart. - Closer together or farther apart would make the robot jerk back and forth less? Farther apart would mean longer times between switching. Closer would mean faster switching, but less distance each time. Lecture 7, Page 7 of 21

8 How would a computer controlled approach help here? It could use the history of the readings to know how quickly to respond. It could respond more gradually over time depending on how much correction is needed. IV. Intelligence from Microcontrollers Here software changes are all that is required Not necessarily hardware changes. Options for computer control Microcontroller Personal Digital Assistant, like a Palm Pilot. Single-board computer Personal computer motherboard or laptop. Microcontrollers are a very good option Low cost Simple power requirements Usually 2.5 V to 5 V. Most can be programmed using software. Create the program on a PC. Then download the program to the microcontroller using a simple hardware interface. The microcontroller operates on its own once disconnected from the PC. Lecture 7, Page 8 of 21

9 There are literally hundreds of choices of microcontrollers. What do you imagine are the differences between them? Cost (as little as $1.00) Available inputs/outputs. Ease of programming. Programming language. Size Power requirements. People will frequently keep using the same controller. Once they have experience with it and its programming procedures. Microcontrollers do not have large, complicated operating systems. Operation is quite simple. Requires a few configuration commands. Otherwise, software is quite straightforward. The programming module can be costly. Much more costly than the microcontroller itself. There are two forms that a program can take. A regular program, compiled down to machine code as in a normal computer. Referred to as stand-alone microcontrollers. Can usually be programmed in a variety of high-level languages. - Like C, BASIC, Java. Lecture 7, Page 9 of 21

10 A program which makes use of special instructions available from the microcontroller. May have a series of very complex commands that can be used. This simplifies the work of the person writing the program, since important functions are already created. Referred to as a bootloader-equipped microcontroller. - The bootloader adds the special commands. Programmed in a predetermined high-level language. - For example, the BASIC Stamp 2 uses BASIC. Microcontrollers are available at 8, 16, or 32-bit processors. Most robot applications do not require more than eight bits. Complete Computer System on a Chip A key benefit of microcontrollers is that they combine a microprocessor component with various I/O that are typically needed to interface with the real world. Example configuration of the 8051 microcontroller. - CPU - CPU reset and clocking support circuitry. - Hardware interrupts - Built-in timer or counter. - Programmable full-duplex serial port I/O lines Some microcontrollers have greater or fewer I/O lines. Not all have hardware interrupt inputs. Some also have analog-to-digital conversion. Some have voltage comparison. A big plus is the CPU reset and clocking support circuitry. The microcontroller, therefore, only needs a power input and decoupling capacitor. Unlike TTL or CMOS which need clocks. Lecture 7, Page 10 of 21

11 Program and Data Storage A low-cost microcontroller will only have a few thousand bytes of program storage. This may seem small. But this amount of memory is usually more than adequate. Possibly depending on the programming method. Two options for use of memory One common area for all programs and data storage. - With a single data bus. - Called a Princeton or Von Neumann architecture. - This is common also on standard desktop computers. Lecture 7, Page 11 of 21

12 Programs stored in one place and data in another. - Two buses are used. - Most modern microcontrollers use this. - Called the Harvard architecture. The difference between the two is not trivial. - The Harvard architecture can run faster, since it can fetch programs and data simultaneously. - The Von Neumann architecture must switch between programs and data. - But the Von Neumann architecture is superior for real-time operating systems. The Harvard architecture will use EEPROM (electronically erasable programmable ROM) for programs and RAM for data. A version of EEPROM used often is Flash. Two data storage specifications will commonly be seen for microcontrollers. Programming will be different for the two different architectures. At the assembler level. Should be no different when using a high-level language. Chip Programming Programming is now much easier than it used to be. Older microcontrollers used PROM and EEPROM that required tools to erase them before a new program could be burned into them. All microcontrollers have programmers. Not people programmers, but software to program the microcontrollers. Range in price from $25 to several thousand dollars. An important consideration is debugging features and capabilities. And how the hardware accomplishes the debugging. Lecture 7, Page 12 of 21

13 V. Personal Digital Assistants Palm pilots and other personal digital assistants (PDAs) can be used as a small robot controller. They have many of the advantages of microcontrollers. But what additional advantages do they provide? Power supply LCD display Stylus, and maybe small keyboard input. No need for a separate computer to create programs. Good volatile and non-volatile storage. What do you suppose is the main difficulty with using PDAs? Interfacing with motors and sensors. Two types of PDAs to consider. Palm O/S Has several programming languages and native programming environments that could be considered. - The HotPaw BASIC programming environment is very popular. - Lets a programmer develop, compile, and run BASIC applications on a PDA. Lecture 7, Page 13 of 21

14 There are lots of older Palm devices that could be used. - And obtained at a low cost. Windows CE Offers essentially the same features as Palm devices. Microsoft offers a number of embedded Visual Tools for CE devices. - Included embedded Visual BASIC. - Which can be written and tested on a PC before downloading to a PDA. Two choices for connecting the PDA to the robot. Serial port Similar to a PC s RS-232 port. - Although it does not implement all handshaking or produce valid RS-232 voltage levels. This is a lower cost option. Infrared IRDA data port. Fairly high speed (9.6 to kbps). Uses a complex communications protocol. A number of chips are available that can implement this interface. Only can communicate reliably over ranges less than 1 meter. A direct electrical connection between the PDA and the robot is avoided. - Eliminates possible problems with electrical noise. An intelligent device is still also needed. It uses a serial connection with the PDA. - And interfaces with the sensors and motors. This can be found in a pre-packaged serial interface chip. - Or another small microcontroller could be used. VI. Single-Board Computers An older approach was to use single-board computers (SBCs). Could be programmed like microcontrollers. In assembly language or a higher level language. But also have the I/O interfaces already implemented. Built-in RS-232 or Ethernet interfaces. So application transfer is simple. Lecture 7, Page 14 of 21

15 The PC/104 form factor was commonly used. Offered tremendous flexibility but at fairly high cost. Most modern single-board computers are really full PCs built into a small circuit board. A very popular form-factor is the mini-itx. A complete PC in 6.7 inches by 6.7 inches. Supports many megabytes of memory. Can run Windows or Linux. - So standard PC development tools can be used. What do think are the downside of using SBCs? Power requirements several voltages and high capacity batteries that heavy. Installing and running a full operating system. I/O operations. Several voltages are needed. - High capacity batteries and several voltage regulator circuits are needed. - Weight and size of these results in SBCs only being used in large robots. Disk drives are unreliable in a robot. Why? Robots vibrate and move. - Disk drives also require a great deal of power. I/O interfacing would usually need to come through USB ports. - Functions can be sophisticated and difficult to program. Despite the downsides, SBCs offer good possibilities. Debugging is quite simple. Could add wireless capabilities with very little work. - Like streaming video. Lecture 7, Page 15 of 21

16 Single-board computer kits There are several popular SBCs available as kits. BotBoard Miniboard HandyBoard - Designed by instructors at MIT. VII. Personal Computers A personal computer can be used to control a robot. Constantly tethered to the computer, since the computer gives the commands. By cable. Or by wireless. But the computer can go with the robot. Computer would be on board the robot, so it would need to be small size. But still only feasible for large robots. Power supply requirements would be hard to meet. Several supply voltages. Lots of power. Need to be able to access I/O. I/O cards designed for USB ports are available. Must be able to program the computer to control the robot. Must adapt the mass storage capability. Disk drives are not practical. Should be able to boot and run completely from a USB flash drive. Need detailed technical information about the computer. Lecture 7, Page 16 of 21

17 A PC may seem an unlikely option for robot control. Why might there still be advantages to using a PC? Expansion slots. Large software base. Readily available technical information. Easy to obtain at a low cost. Used, old machines can be obtained at thrift stores or on-line auctions. - As long as an older machine still has software support. - Operating system, applications, drivers, etc. Do not install the entire PC. Only use the motherboard. - Will require tight voltage regulation. - Newer motherboards are much more efficient regarding power consumption. Or use a laptop. - Do not try to use the laptop batteries to power other parts of the robot. - Some batteries will automatically shut off, others will run down faster and could be damaged. Make sure BIOS can be adjusted. - To run without a keyboard. - To run without a display. Lecture 7, Page 17 of 21

18 Operating system choice is very important. Determine what features are needed. See what can be loaded or not loaded. The graphical user interface (GUI) is a big use of resources and memory. Without the GUI, the operating system might take up a fairly small amount of space on a USB drive. See what tools are available with that operating system. There are a variety of open source tools available. There are several Linux robotic communities. VIII. Inputs and Outputs Microcontrollers provide a basic, two-state input and output of 0 or +5 volts. These need to be translated to outputs for sensors and motors. And allow for inputs from a variety of sensors. They also provide serial communications. This is the most common form of computer interfacing. Multiple bits are sent in a stream over time on a single wire. Several formats are used. - Depending on how the communication is to occur - Depending on the need to have regularly occurring edges for clock synchronization. Lecture 7, Page 18 of 21

19 Synchronous serial communications are the most likely to be used. Three most common types of synchronous serial communications. Inter-integrated circuit (I2C) - Created by Phillips. - Two or more microcontrollers can communicate. - One is a master, the others are slaves. - Slaves can be special devices for interrogating sensors or operating motors. Microwire - By National Semiconductor - Used for interfacing a microcontroller with electronics. - Such as memory and analog-to-digital convertors. Serial peripheral interface (SPI) - By Motorola Lecture 7, Page 19 of 21

20 Asynchronous serial communications The beginning of a transmission is indicated by a start bit. An error control bit can be placed at the end of the data bits. Like the parity bit we saw in an earlier lecture. But this is rarely used. - Since cables are not usually very noisy. Would be different if using wireless. Most popular approach is RS-232 (more accurately EIA-232). Uses +12 V and 12 V instead of TTL 0 and +5 V. Data Conversion Analog-to-Digital converters (ADCs) And conversely DACs. Transform analog voltages to digital, binary values. Could be on a separate circuit. Could be included in the microcontroller. Lecture 7, Page 20 of 21

21 Comparators Can compare a voltage against some setpoint. Then the output is high or low to indicate above or below the setpoint. Other inputs and output Timers to determine the frequency of an incoming digital signal. PWM outputs Can be used with a capacitor and resistor to create a rudimentary form of digital-to-analog conversion. Can create a sound output. What other use have we seen of this? Speed control of a DC motor. Pulse accumulators Automatic counters. Usually can be doing counting when the rest of the microcontroller is doing something else. Hardware interrupts Special inputs to get the attention of the microcontroller. Microcontroller temporarily suspends normal program execution to run an interrupt handling subroutine. External reset To reset the microcontroller. Switch debouncer To ignore the temporary noise when a switch is closing. Input pull-up Resistors to keep from seeming like there is a signal when the microcontroller is not generating one. Lecture 7, Page 21 of 21

Robotic Systems ECE 401RB Fall 2006

Robotic Systems ECE 401RB Fall 2006 The following notes are from: Robotic Systems ECE 401RB Fall 2006 Lecture 13: Processors Part 1 Chapter 12, G. McComb, and M. Predko, Robot Builder's Bonanza, Third Edition, Mc- Graw Hill, 2006. I. Introduction

More information

Robotic Systems ECE 401RB Fall 2006

Robotic Systems ECE 401RB Fall 2006 The following notes are from: Robotic Systems ECE 401RB Fall 2006 Lecture 15: Processors Part 3 Chapter 14, G. McComb, and M. Predko, Robot Builder's Bonanza, Third Edition, Mc- Graw Hill, 2006. I. Peripherals

More information

Lecture (01) Introducing Embedded Systems and the Microcontrollers By: Dr. Ahmed ElShafee

Lecture (01) Introducing Embedded Systems and the Microcontrollers By: Dr. Ahmed ElShafee Lecture (01) Introducing Embedded Systems and the Microcontrollers By: Dr. Ahmed ElShafee ١ Agenda What is microprocessor system? What is Microcontroller/embedded system? Definition of Embedded Systems

More information

Computer Hardware Requirements for Real-Time Applications

Computer Hardware Requirements for Real-Time Applications Lecture (4) Computer Hardware Requirements for Real-Time Applications Prof. Kasim M. Al-Aubidy Computer Engineering Department Philadelphia University Real-Time Systems, Prof. Kasim Al-Aubidy 1 Lecture

More information

MicroProcessor. MicroProcessor. MicroProcessor. MicroProcessor

MicroProcessor. MicroProcessor. MicroProcessor. MicroProcessor 1 2 A microprocessor is a single, very-large-scale-integration (VLSI) chip that contains many digital circuits that perform arithmetic, logic, communication, and control functions. When a microprocessor

More information

Lecture Objectives. Introduction to Computing Chapter 0. Topics. Numbering Systems 04/09/2017

Lecture Objectives. Introduction to Computing Chapter 0. Topics. Numbering Systems 04/09/2017 Lecture Objectives Introduction to Computing Chapter The AVR microcontroller and embedded systems using assembly and c Students should be able to: Convert between base and. Explain the difference between

More information

Ali Karimpour Associate Professor Ferdowsi University of Mashhad

Ali Karimpour Associate Professor Ferdowsi University of Mashhad AUTOMATIC CONTROL SYSTEMS Ali Karimpour Associate Professor Ferdowsi University of Mashhad Main reference: Christopher T. Kilian, (2001), Modern Control Technology: Components and Systems Publisher: Delmar

More information

Lecture 1. Course Overview and The 8051 Architecture

Lecture 1. Course Overview and The 8051 Architecture Lecture 1 Course Overview and The 8051 Architecture MCUniversity Program Lectures 8051 architecture t System overview of C8051F020 8051 instruction set System clock, crossbar and GPIO Assembler directives

More information

Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers

Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers Lecture (4) Computer Hardware Requirements for ERTSs: Microprocessors & Microcontrollers Prof. Kasim M. Al-Aubidy Philadelphia University-Jordan DERTS-MSc, 2015 Prof. Kasim Al-Aubidy 1 Lecture Outline:

More information

Microcontrollers. Microcontroller

Microcontrollers. Microcontroller Microcontrollers Microcontroller A microprocessor on a single integrated circuit intended to operate as an embedded system. As well as a CPU, a microcontroller typically includes small amounts of RAM and

More information

FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100)

FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100) (Revision-10) FIFTH SEMESTER DIPLOMA EXAMINATION IN ENGINEERING/ TECHNOLOGY-MARCH 2014 EMBEDDED SYSTEMS (Common for CT,CM) [Time: 3 hours] (Maximum marks : 100) PART-A (Maximum marks : 10) I. Answer all

More information

Module 1. Introduction. Version 2 EE IIT, Kharagpur 1

Module 1. Introduction. Version 2 EE IIT, Kharagpur 1 Module 1 Introduction Version 2 EE IIT, Kharagpur 1 Lesson 3 Embedded Systems Components Part I Version 2 EE IIT, Kharagpur 2 Structural Layout with Example Instructional Objectives After going through

More information

MICROCONTROLLER BASED SMART FAN SYSTEM

MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BACHELOR OF ELECTRICAL ENGINEERING (HONS.) (ELECTRONICS) 2007 UMP MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BIN ABD. GHANI UNIVERSITI MALAYSIA PAHANG v ABSTRACT This project

More information

About the Presentations

About the Presentations About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning of each presentation. You may customize the presentations

More information

Growing Together Globally Serial Communication Design In Embedded System

Growing Together Globally Serial Communication Design In Embedded System Growing Together Globally Serial Communication Design In Embedded System Contents Serial communication introduction......... 01 The advantages of serial design......... 02 RS232 interface......... 04 RS422

More information

Microprocessors/Microcontrollers

Microprocessors/Microcontrollers Microprocessors/Microcontrollers A central processing unit (CPU) fabricated on one or more chips, containing the basic arithmetic, logic, and control elements of a computer that are required for processing

More information

Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad

Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad Embedded Systems Lab Lab 1 Introduction to Microcontrollers Eng. Dalia A. Awad Objectives To be familiar with microcontrollers, PIC18F4550 microcontroller. Tools PIC18F4550 Microcontroller, MPLAB software,

More information

EE4390 Microprocessors. Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System

EE4390 Microprocessors. Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System EE4390 Microprocessors Lessons 2, 3 68HC12 Hardware Overview, Subsystems, and memory System 1 Overview 68HC12 hardware overview Subsystems Memory System 2 68HC12 Hardware Overview "Copyright of Motorola,

More information

Microcontroller basics

Microcontroller basics FYS3240 PC-based instrumentation and microcontrollers Microcontroller basics Spring 2017 Lecture #4 Bekkeng, 30.01.2017 Lab: AVR Studio Microcontrollers can be programmed using Assembly or C language In

More information

Ali Karimpour Associate Professor Ferdowsi University of Mashhad

Ali Karimpour Associate Professor Ferdowsi University of Mashhad AUTOMATIC CONTROL SYSTEMS Ali Karimpour Associate Professor Ferdowsi University of Mashhad Main reference: Christopher T. Kilian, (2001), Modern Control Technology: Components and Systems Publisher: Delmar

More information

To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM).

To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM). Lab # 6 Serial communications & EEPROM Objectives To be familiar with the USART (RS-232) protocol. To be familiar with one type of internal storage system in PIC (EEPROM). Serial Communications Serial

More information

Computer Systems. Communication (networks, radio links) Meatware (people, users don t forget them)

Computer Systems. Communication (networks, radio links) Meatware (people, users don t forget them) Computers are useful machines, but they are generally useless by themselves. Computers are usually part of a system a computer system includes: Hardware (machines) Software (programs, applications) Communication

More information

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 1 Introducing Hardware

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 1 Introducing Hardware : Managing, Maintaining, and Troubleshooting, 5e Chapter 1 Introducing Hardware Objectives Learn that a computer requires both hardware and software to work Learn about the many different hardware components

More information

Introduction to Microcontrollers

Introduction to Microcontrollers Introduction to Microcontrollers Embedded Controller Simply an embedded controller is a controller that is embedded in a greater system. One can define an embedded controller as a controller (or computer)

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future Twelfth Edition Chapter 2: Inside the System Unit Copyright 2012 Pearson Education, Inc. Publishing as Prentice Hall 1 Inside the Computer System Copyright 2012 Pearson Education,

More information

EMBEDDED SYSTEMS COURSE CURRICULUM

EMBEDDED SYSTEMS COURSE CURRICULUM On a Mission to Transform Talent EMBEDDED SYSTEMS COURSE CURRICULUM Table of Contents Module 1: Basic Electronics and PCB Software Overview (Duration: 1 Week)...2 Module 2: Embedded C Programming (Duration:

More information

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty

Programmable Control. Name Class Teacher. Ellon Academy Technical Faculty Programmable Control Name Class Teacher Ellon Academy Technical Faculty Learning Intentions o Gain the ability to design and evaluate solutions to engineering problems in a range of contexts o I will gain

More information

Figure 1.1: Some embedded device. In this course we shall learn microcontroller and FPGA based embedded system.

Figure 1.1: Some embedded device. In this course we shall learn microcontroller and FPGA based embedded system. Course Code: EEE 4846 International Islamic University Chittagong (IIUC) Department of Electrical and Electronic Engineering (EEE) Course Title: Embedded System Sessional Exp. 1: Familiarization with necessary

More information

Goal: We want to build an autonomous vehicle (robot)

Goal: We want to build an autonomous vehicle (robot) Goal: We want to build an autonomous vehicle (robot) This means it will have to think for itself, its going to need a brain Our robot s brain will be a tiny computer called a microcontroller Specifically

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future 2008 Prentice-Hall, Inc. Computers Are Your Future Chapter 6 Inside the System Unit 2008 Prentice-Hall, Inc. Slide 2 What You Will Learn... Understand how computers represent

More information

Overview of Microcontroller and Embedded Systems

Overview of Microcontroller and Embedded Systems UNIT-III Overview of Microcontroller and Embedded Systems Embedded Hardware and Various Building Blocks: The basic hardware components of an embedded system shown in a block diagram in below figure. These

More information

PROGRAMMING AND CUSTOMIZING

PROGRAMMING AND CUSTOMIZING PROGRAMMING AND CUSTOMIZING THE PICAXE MICROCONTROLLER SECOND EDITION DAVID LINCOLN Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems

MT2 Introduction Embedded Systems. MT2.1 Mechatronic systems MT2 Introduction Embedded Systems MT2.1 Mechatronic systems Mechatronics is the synergistic integration of mechanical engineering, with electronics and intelligent computer control in the design and manufacturing

More information

Chapter 4 The Components of the System Unit

Chapter 4 The Components of the System Unit Chapter 4 The Components of the System Unit The System Unit What is the system unit? Case that contains electronic components of the computer used to process data Sometimes called the chassis p. 184 Fig.

More information

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an

Infineon C167CR microcontroller, 256 kb external. RAM and 256 kb external (Flash) EEPROM. - Small single-board computer (SBC) with an Microcontroller Basics MP2-1 week lecture topics 2 Microcontroller basics - Clock generation, PLL - Address space, addressing modes - Central Processing Unit (CPU) - General Purpose Input/Output (GPIO)

More information

Introduction to 8051 microcontrollers

Introduction to 8051 microcontrollers Introduction to 8051 microcontrollers Posted on May 7, 2008, by Ibrahim KAMAL, in Micro-controllers, tagged This tutorial is specially tailored to electronics and robotics hobbyists that have already realized

More information

Chapter One. Introduction to Computer System

Chapter One. Introduction to Computer System Principles of Programming-I / 131101 Prepared by: Dr. Bahjat Qazzaz -------------------------------------------------------------------------------------------- Chapter One Introduction to Computer System

More information

Microcontrollers. Principles and Applications. Ajit Pal +5 V 2K 8. 8 bit dip switch. P2 8 Reset switch Microcontroller AT89S52 100E +5 V. 2.

Microcontrollers. Principles and Applications. Ajit Pal +5 V 2K 8. 8 bit dip switch. P2 8 Reset switch Microcontroller AT89S52 100E +5 V. 2. Ajit Pal Microcontrollers Principles and Applications +5 V 2K 8 8 bit dip switch P2 8 Reset switch Microcontroller AT89S52 100E +5 V +5 V 2.2K 10 uf RST 7 Segment common anode LEDs P1(0-6) & P3(0-6) 7

More information

MSc-IT 1st Semester Fall 2016, Course Instructor M. Imran khalil 1

MSc-IT 1st Semester Fall 2016, Course Instructor M. Imran khalil 1 Objectives Overview Differentiate among various styles of system units on desktop computers, notebook computers, and mobile devices Identify chips, adapter cards, and other components of a motherboard

More information

acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs.

acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs. acret Ameya Centre for Robotics & Embedded Technology Syllabus for Diploma in Embedded Systems (Total Eight Modules-4 Months -320 Hrs.) Module 0 Introduction Introduction to Embedded Systems, Real Time

More information

ECE 471 Embedded Systems Lecture 2

ECE 471 Embedded Systems Lecture 2 ECE 471 Embedded Systems Lecture 2 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 7 September 2018 Announcements Reminder: The class notes are posted to the website. HW#1 will

More information

HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM

HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM Chapter 3 HARDWARE OF SUPERVISORY CONTROL & DATA ACQUISITION SYSTEM Dr. H.K. VERMA Distinguished Professor Department of Electrical and Electronics Engineering School of Engineering and Technology SHARDA

More information

Amarjeet Singh. January 30, 2012

Amarjeet Singh. January 30, 2012 Amarjeet Singh January 30, 2012 Website updated - https://sites.google.com/a/iiitd.ac.in/emsys2012/ Lecture slides, audio from last class Assignment-2 How many of you have already finished it? Final deadline

More information

ECE 1160/2160 Embedded Systems Design. Midterm Review. Wei Gao. ECE 1160/2160 Embedded Systems Design

ECE 1160/2160 Embedded Systems Design. Midterm Review. Wei Gao. ECE 1160/2160 Embedded Systems Design ECE 1160/2160 Embedded Systems Design Midterm Review Wei Gao ECE 1160/2160 Embedded Systems Design 1 Midterm Exam When: next Monday (10/16) 4:30-5:45pm Where: Benedum G26 15% of your final grade What about:

More information

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG Adam Lindberg github.com/eproxus HARDWARE COMPONENTS SOFTWARE FUTURE Boot, Serial console, Erlang shell DEMO THE GRISP BOARD SPECS Hardware & specifications

More information

Memory Study Material

Memory Study Material Computer memory refers to the devices that are used to store data or programs on a temporary or permanent basis for use in a computer. Any data or instruction entered into the memory of a computer is considered

More information

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite.

The industrial technology is rapidly moving towards ARM based solutions. Keeping this in mind, we are providing a Embedded ARM Training Suite. EMBEDDED ARM TRAINING SUITE ARM SUITE INCLUDES ARM 7 TRAINER KIT COMPILER AND DEBUGGER THROUGH JTAG INTERFACE PROJECT DEVELOPMENT SOLUTION FOR ARM 7 e-linux LAB FOR ARM 9 TRAINING PROGRAM INTRODUCTION

More information

Components of a personal computer

Components of a personal computer Components of a personal computer Computer systems ranging from a controller in a microwave oven to a large supercomputer contain components providing five functions. A typical personal computer has hard,

More information

Discovering Computers 2012

Discovering Computers 2012 Discovering Computers 2012 Your Interactive Guide to the Digital World Edited by : Asma AlOsaimi The System Unit Memory The inside of the system unit on a desktop personal computer includes: Drive bay(s)

More information

Basic Components of Digital Computer

Basic Components of Digital Computer Digital Integrated Circuits & Microcontrollers Sl. Mihnea UDREA, mihnea@comm.pub.ro Conf. Mihai i STANCIU, ms@elcom.pub.ro 1 Basic Components of Digital Computer CPU (Central Processing Unit) Control and

More information

ELCT 912: Advanced Embedded Systems

ELCT 912: Advanced Embedded Systems ELCT 912: Advanced Embedded Systems Lecture 2-3: Embedded System Hardware Dr. Mohamed Abd El Ghany, Department of Electronics and Electrical Engineering Embedded System Hardware Used for processing of

More information

Robotics Training Module ABLab Solutions

Robotics Training Module ABLab Solutions Robotics Training Module ABLab Solutions www.ablab.in Table of Contents Course Outline... 4 Introduction to Robotics... 4 Overview of Basic Electronic... 4 Overview of Digital Electronic... 4 Power Supply...

More information

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6

Mechatronics and Measurement. Lecturer:Dung-An Wang Lecture 6 Mechatronics and Measurement Lecturer:Dung-An Wang Lecture 6 Lecture outline Reading:Ch7 of text Today s lecture: Microcontroller 2 7.1 MICROPROCESSORS Hardware solution: consists of a selection of specific

More information

Diploma in Embedded Systems

Diploma in Embedded Systems Diploma in Embedded Systems Duration: 5 Months[5 days a week,3 hours a day, Total 300 hours] Module 1: 8051 Microcontroller in Assemble Language Characteristics of Embedded System Overview of 8051 Family

More information

CREATED BY M BILAL & Arslan Ahmad Shaad Visit:

CREATED BY M BILAL & Arslan Ahmad Shaad Visit: CREATED BY M BILAL & Arslan Ahmad Shaad Visit: www.techo786.wordpress.com Q1: Define microprocessor? Short Questions Chapter No 01 Fundamental Concepts Microprocessor is a program-controlled and semiconductor

More information

Unlocking the Potential of Your Microcontroller

Unlocking the Potential of Your Microcontroller Unlocking the Potential of Your Microcontroller Ethan Wu Storming Robots, Branchburg NJ, USA Abstract. Many useful hardware features of advanced microcontrollers are often not utilized to their fullest

More information

SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR. ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1

SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR. ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1 SANKALCHAND PATEL COLLEGE OF ENGINEERING, VISNAGAR ELECTRONICS & COMMUNICATION DEPARTMENT Question Bank- 1 Subject: Microcontroller and Interfacing (151001) Class: B.E.Sem V (EC-I & II) Q-1 Explain RISC

More information

THE MICROCOMPUTER SYSTEM CHAPTER - 2

THE MICROCOMPUTER SYSTEM CHAPTER - 2 THE MICROCOMPUTER SYSTEM CHAPTER - 2 20 2.1 GENERAL ASPECTS The first computer was developed using vacuum tubes. The computers thus developed were clumsy and dissipating more power. After the invention

More information

CS 101, Mock Computer Architecture

CS 101, Mock Computer Architecture CS 101, Mock Computer Architecture Computer organization and architecture refers to the actual hardware used to construct the computer, and the way that the hardware operates both physically and logically

More information

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software!

TEVATRON TECHNOLOGIES PVT. LTD Embedded! Robotics! IoT! VLSI Design! Projects! Technical Consultancy! Education! STEM! Software! Summer Training 2016 Advance Embedded Systems Fast track of AVR and detailed working on STM32 ARM Processor with RTOS- Real Time Operating Systems Covering 1. Hands on Topics and Sessions Covered in Summer

More information

Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur

Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur Lecture - 09 8085 Microprocessors (Contd.) (Refer Slide Time:

More information

Introduction the Serial Communications Parallel Communications Parallel Communications with Handshaking Serial Communications

Introduction the Serial Communications Parallel Communications Parallel Communications with Handshaking Serial Communications Introduction the Serial Communications Parallel Communications Parallel Communications with Handshaking Serial Communications o Asynchronous Serial (SCI, RS-232) o Synchronous Serial (SPI, IIC) The MC9S12

More information

Architecture of Computers and Parallel Systems Part 6: Microcomputers

Architecture of Computers and Parallel Systems Part 6: Microcomputers Architecture of Computers and Parallel Systems Part 6: Microcomputers Ing. Petr Olivka petr.olivka@vsb.cz Department of Computer Science FEI VSB-TUO Architecture of Computers and Parallel Systems Part

More information

Embedded Systems. Software Development & Education Center. (Design & Development with Various µc)

Embedded Systems. Software Development & Education Center. (Design & Development with Various µc) Software Development & Education Center Embedded Systems (Design & Development with Various µc) Module 1: Embedded C Programming INTRODUCTION TO EMBEDDED SYSTEM History & need of Embedded System Basic

More information

PIC Microcontroller Introduction

PIC Microcontroller Introduction PIC Microcontroller Introduction The real name of this microcontroller is PICmicro (Peripheral Interface Controller), but it is better known as PIC. Its first ancestor was designed in 1975 by General Instruments.

More information

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT

AC : INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT AC 2007-1527: INFRARED COMMUNICATIONS FOR CONTROLLING A ROBOT Ahad Nasab, Middle Tennessee State University SANTOSH KAPARTHI, Middle Tennessee State University American Society for Engineering Education,

More information

PART B UNIT II PART A

PART B UNIT II PART A SRM INSTITUTE OF SCIENCE AND TECHNOLOGY (Deemed University) DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK SUB : Microprocessor/CS201 YEAR/SEM : II/III UNIT I PART - A 1. Differentiate accumulator

More information

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing SECOND EDITION Arduino Cookbook Michael Margolis Beijing Cambridge Farnham Koln Sebastopol O'REILLY- Tokyo Table of Contents Preface xi 1. Getting Started 1 1.1 Installing the Integrated Development Environment

More information

Microcontrollers for Ham Radio

Microcontrollers for Ham Radio Microcontrollers for Ham Radio MARTIN BUEHRING - KB4MG MAT T PESCH KK4NLK TOM PERRY KN4LSE What is a Microcontroller? A micro-controller is a small computer on a single integrated circuit containing a

More information

Group 10 Programmable Sensor Output Simulator Progress Report #2

Group 10 Programmable Sensor Output Simulator Progress Report #2 Department of Electrical Engineering University of Victoria ELEC 499 Design Project Group 10 Programmable Sensor Output Simulator Progress Report #2 March 5, 2005 Submitted by: Group No.: 10 Team: Exfour

More information

Segment 1A. Introduction to Microcomputer and Microprocessor

Segment 1A. Introduction to Microcomputer and Microprocessor Segment 1A Introduction to Microcomputer and Microprocessor 1.1 General Architecture of a Microcomputer System: The term microcomputer is generally synonymous with personal computer, or a computer that

More information

Somes French translations :

Somes French translations : 1 RB - EPFL/IC/LAP - A2012 Embedded systems Somes French translations : Systèmes embarqués Systèmes enrobés Systèmes enfouis Embedded systems, definition There is no formal definition of an embedded system,

More information

Acknowledgments About the Author

Acknowledgments About the Author Acknowledgments p. xi About the Author p. xii Introduction p. xiii The Intel 8051 p. xv Additional information and resources p. xvi Conventions used in this book p. xvii Microcontrollers p. 1 Different

More information

Fredrick M. Cady. Assembly and С Programming forthefreescalehcs12 Microcontroller. шт.

Fredrick M. Cady. Assembly and С Programming forthefreescalehcs12 Microcontroller. шт. SECOND шт. Assembly and С Programming forthefreescalehcs12 Microcontroller Fredrick M. Cady Department of Electrical and Computer Engineering Montana State University New York Oxford Oxford University

More information

Microprocessor (COM 9323)

Microprocessor (COM 9323) Microprocessor (COM 9323) Lecture 1: Introduction Ahmed Elnakib, PhD Assistant Professor, Mansoura University, Egypt Feb 17 th, 2016 1 Course Syllabus* o Introduction to computer architecture o Basics

More information

MICROPROCESSOR BASED SYSTEM DESIGN

MICROPROCESSOR BASED SYSTEM DESIGN MICROPROCESSOR BASED SYSTEM DESIGN Lecture 5 Xmega 128 B1: Architecture MUHAMMAD AMIR YOUSAF VON NEUMAN ARCHITECTURE CPU Memory Execution unit ALU Registers Both data and instructions at the same system

More information

machine cycle, the CPU: (a) Fetches an instruction, (b) Decodes the instruction, (c) Executes the instruction, and (d) Stores the result.

machine cycle, the CPU: (a) Fetches an instruction, (b) Decodes the instruction, (c) Executes the instruction, and (d) Stores the result. Central Processing Unit (CPU) A processor is also called the CPU, and it works hand in hand with other circuits known as main memory to carry out processing. The CPU is the "brain" of the computer; it

More information

Embedded Systems Design (630414) Lecture 1 Introduction to Embedded Systems Prof. Kasim M. Al-Aubidy Computer Eng. Dept.

Embedded Systems Design (630414) Lecture 1 Introduction to Embedded Systems Prof. Kasim M. Al-Aubidy Computer Eng. Dept. Embedded Systems Design (630414) Lecture 1 Introduction to Embedded Systems Prof. Kasim M. Al-Aubidy Computer Eng. Dept. Definition of an E.S. It is a system whose principal function is not computational,

More information

FUNCTIONS OF COMPONENTS OF A PERSONAL COMPUTER

FUNCTIONS OF COMPONENTS OF A PERSONAL COMPUTER FUNCTIONS OF COMPONENTS OF A PERSONAL COMPUTER Components of a personal computer - Summary Computer Case aluminium casing to store all components. Motherboard Central Processor Unit (CPU) Power supply

More information

Memory Overview. Overview - Memory Types 2/17/16. Curtis Nelson Walla Walla University

Memory Overview. Overview - Memory Types 2/17/16. Curtis Nelson Walla Walla University Memory Overview Curtis Nelson Walla Walla University Overview - Memory Types n n n Magnetic tape (used primarily for long term archive) Magnetic disk n Hard disk (File, Directory, Folder) n Floppy disks

More information

Embedded Training MakeICT Workshop

Embedded Training MakeICT Workshop Embedded Training MakeICT Workshop 1 PROJECT GOAL Come learn with use as we introduce programming skills via a project and program embedded systems with the vision of understanding the hardware and software

More information

What step should a technician perform first when servicing computer equipment?

What step should a technician perform first when servicing computer equipment? - 1 IT EssClass Test 2 1 What is the unit used to measure CPU speed? Bits. Bytes. Hertz. Voltage. 2 What is the purpose of a heat sink on a processor? To cool the processor. To ground the processor. To

More information

Innovation First, Inc Full-Size Robot Controller Reference Guide

Innovation First, Inc Full-Size Robot Controller Reference Guide 2004 Full-Size Robot Controller Reference Guide 2.19.2004 www.innovationfirst.com Page 2 Table of Contents 1. Robot Controller Overview... 3 2. Main Power Input... 4 3. Battery Backup Power... 4 4. PROGRAM...

More information

LABORATORY USE OF A MICROCOMPUTER (Last Revision: August 27, 2000)

LABORATORY USE OF A MICROCOMPUTER (Last Revision: August 27, 2000) LABORATORY USE OF A MICROCOMPUTER (Last Revision: August 27, 2000) ABSTRACT: A program, LabVIEW, is used to enable a microcomputer to acquire and manipulate data and to generate output voltages. TEXT REFERENCE:

More information

Bolt 18F2550 System Hardware Manual

Bolt 18F2550 System Hardware Manual 1 Bolt 18F2550 System Hardware Manual Index : 1. Overview 2. Technical specifications 3. Definition of pins in 18F2550 4. Block diagram 5. FLASH memory Bootloader programmer 6. Digital ports 6.1 Leds and

More information

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform.

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform. Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform www.sierraradio.net www.hamstack.com Topics Introduction Hardware options Software development HamStack project

More information

Serial Communications

Serial Communications April 2014 7 Serial Communications Objectives - To be familiar with the USART (RS-232) protocol. - To be able to transfer data from PIC-PC, PC-PIC and PIC-PIC. - To test serial communications with virtual

More information

Full file at

Full file at Computers Are Your Future, 12e (LaBerta) Chapter 2 Inside the System Unit 1) A byte: A) is the equivalent of eight binary digits. B) represents one digit in the decimal numbering system. C) is the smallest

More information

LinkSprite Technologies,.Inc. pcduino V2

LinkSprite Technologies,.Inc. pcduino V2 1 2 Contents Board Overview...3 System Features...4 Single-Board Computer Configuration...5 Pin Assignments...7 Single-Board Computer Setup...9 Required Hardware...9 Optional Hardware...9 Adjusting Screen

More information

BASIC-Tiger Application Note No. 058 Rev Wireless Communication with IrDA. Gunther Zielosko. 1. Basics of infrared communication

BASIC-Tiger Application Note No. 058 Rev Wireless Communication with IrDA. Gunther Zielosko. 1. Basics of infrared communication Wireless Communication with IrDA Gunther Zielosko 1. Basics of infrared communication After the breakthrough of infrared remote controls in electronic devices, there had been endeavors at the beginning

More information

Serial Port Complete

Serial Port Complete Serial Port Complete Programming and Circuits for RS-232 and RS-485 Links and Networks Network Programming Tips & Tricks Cables, Connectors, & Terminations Sample Applications for Visual Basic Basic Stamp

More information

Computer Systems A Background Review

Computer Systems A Background Review Computer Systems A Background Review Ravindranath Jaglal Thursday 9 th 2012 Table of Contents I 2.1 The Computer System 2.1.1 Computer System Overview 2.1.2 Application 2.1.3 Sensors 2.1.4 Effectors 2.1.5

More information

INTELLIGENT APPLIANCE CONTROL SYSTEM USING ARM7 AND ZIGBEE

INTELLIGENT APPLIANCE CONTROL SYSTEM USING ARM7 AND ZIGBEE Int. J. Elec&Electr.Eng&Telecoms. 2013 Pushkar Singh et al., 2013 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 2, No. 3, July 2013 2013 IJEETC. All Rights Reserved INTELLIGENT APPLIANCE CONTROL SYSTEM

More information

Parallel Data Transfer. Suppose you need to transfer data from one HCS12 to another. How can you do this?

Parallel Data Transfer. Suppose you need to transfer data from one HCS12 to another. How can you do this? Introduction the Serial Communications Huang Sections 9.2, 10.2, 11.2 SCI Block User Guide SPI Block User Guide IIC Block User Guide o Parallel vs Serial Communication o Synchronous and Asynchronous Serial

More information

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Serial Interfaces Part 1. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Serial Interfaces Part 1 ECE 153B Sensor & Peripheral Interface Design Serial Interfaces Simple Serial Interfaces RS-232C (UART) Provides for point to point communications, primarily Among the simplest

More information

Design and Installation of Home Automation and Security System Using Microcontroller and ZigBee Modulation

Design and Installation of Home Automation and Security System Using Microcontroller and ZigBee Modulation Design and Installation of Home Automation and Security System Using Microcontroller and ZigBee Modulation Bhargav Mypati, Naseer Ahamed, Gopa Sai Chandra School of Electrical Engineering (SELECT), VIT

More information

ECE3120: Computer Systems Hardware & Software Development Tools

ECE3120: Computer Systems Hardware & Software Development Tools ECE3120: Computer Systems Hardware & Software Development Tools Manjeera Jeedigunta http://blogs.cae.tntech.edu/msjeedigun21 Email: msjeedigun21@tntech.edu Tel: 931-372-6181, Prescott Hall 120 The HCS12

More information

The Microcontroller Idea Book

The Microcontroller Idea Book The following material is excerpted from: The Microcontroller Idea Book Circuits, Programs, & Applications featuring the 8052-BASIC Microcontroller by Jan Axelson copyright 1994, 1997 by Jan Axelson ISBN

More information

Downloaded from various sources on the NET

Downloaded from various sources on the NET Overview Computers. Hardware components of a Computer. Purpose and functions of computer operating systems. Evolution of computer operating systems. Operating systems available today. Downloaded from various

More information

CS-424/580A Microcontrollers and Robotics

CS-424/580A Microcontrollers and Robotics CS-424/580A Microcontrollers and Robotics CS-424/580A Microcontrollers & Robotics Professor Richard R. Eckert EB-N6, 777-4365 Office hours: W 10-11:30 A.M., R 1-2:30 P.M. Email: reckert@binghamton.edu

More information