: REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR

Size: px
Start display at page:

Download ": REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR"

Transcription

1 26-797: REAL TIME SYSTEMS LABORATORY DEVELOPMENT: EXPERIMENTS FOCUSING ON A DUAL CORE PROCESSOR Mukul Shirvaikar, University of Texas-Tyler MUKUL SHIRVAIKAR received the Ph.D. degree in Electrical and Computer Engineering from the University of Tennessee in He is currently an Associate Professor of Electrical Engineering at the University of Texas at Tyler. He has also held positions at Texas Instruments and the University of West Florida. His research interests include real-time imaging, embedded systems and pattern recognition. Mark Humphries, University of Texas-Tyler MARK HUMPHRIES received his Master s in Electrical Engineering in 25 from the University of Texas at Tyler, and is a practicing engineer at General Dynamics Inc. in Longview, Texas. He developed real-time systems labs for the OMAP platform. His interests include real-time imaging, open source software and spatial geometry optimization algorithms for multi-faceted cubes. Leonardo Estevez, Texas Instruments Inc. LEONARDO ESTEVEZ received the Ph.D. degree in Electrical and Computer Engineering from Texas A & M University in He is currently the OMAP Software Architecture and Requirements Manager at Texas Instruments. He has many national engineering awards including SHPE in 21 and the HENAAC Most Promising Engineer award in 22. He is an Associate Editor for the Journal of Real Time Imaging. American Society for Engineering Education, 26 Page

2 Real Time Systems Laboratory Development: Experiments Focusing on a Dual Core Processor Abstract This paper presents the laboratory curriculum developed for a senior-level elective course in Real Time Systems. The labs developed for this semester long course are aimed at providing a challenging experience to electrical and computer engineering students and exposing them to state-of-the-art tools from industry. The projects were developed on the OMAP 5912 starter kit module supplied by Texas Instruments (TI). The open multimedia architecture platform (OMAP) technology from TI consists mainly of dual-core processor chips. The OMAP 5912 chip has an ARM processor and a C55 digital signal processor (DSP) in the same package. The Linux kernel runs on the ARM processor and the DSP-BIOS kernel runs on the TI C55 DSP in tandem. The real time software development tools for this system are the Code Composer Studio integrated development environment (IDE) and the Monta Vista Linux environment. The platform is thus ideally suited to expose students to real time systems. The projects developed cover the following topics sequentially: introduction to the environment, real time operating systems, software development and application debugging. Some of the applications covered are: implementing a finite impulse response (FIR) filter and testing with audio, modifying the filter for different band pass characteristics, testing an audio codec and implementing an embedded web server. TI expects to disseminate the instructional resources developed and tested in this course to other universities and industry partners. Introduction Dual-core processors have recently entered mainstream computing in PC systems, and it is critical for students of computer engineering to be exposed to them early in their career. This 1 paper extends past work P P, which presented the development of some introductory labs using TI's OMAP 5912 Starter Kit (OSK). The Real Time Systems senior elective course at the University of Texas at Tyler combines lectures along with an integrated lab. The students are required to have at least one course in structured programming, and a course or prior experience with the operation of microprocessors, but Linux experience is not required. The lecture portion of the course introduces students to real-time system concepts including, hard and soft deadlines, scheduling algorithms, inter-task communication and synchronization. The lab portion of the course reinforces these theoretical concepts and provides hands-on familiarity with software, hardware, and development tools essential for real time systems development professionals. For example, hard deadlines have to be met in order to complete dual-core data processing. The initial version of the lab procedures utilized a digital signal processor (DSP) based system. Texas Instruments' (TI) introduction of a cost effective dual core processor (OMAP 5912) development system has enabled a new lab curricula. The OMAP 5912 gives us the flexibility of development for a general-purpose processor based (GPP) system combined with the processing efficiency of a DSP based system. The sheer number of new concepts introduced to students in this course reflects the reality they have to face in the new job market. In order to fit in as professionals the students have to be conversant with real-time, computer architecture, DSP, Page

3 P and P driver is networking and other concepts. It is not possible to address all these topics without using a relatively advanced and mature platform. Further, the complexity involved in successfully debugging real-time systems makes it very difficult to design lab sequences that do not frustrate the contemporary student who has a point-and-click mentality. The lab curriculum and flow was deliberately chosen to kindle student interest with applications involving media. We have developed lab procedures that illustrate how development is accomplished for dual core systems specifically and for real time and embedded systems in general. A description of development tools that are used for each processor core and for inter-processor communication is provided. The students work with the Linux operating system, boot loader operation, cross compiler tools, debug tools, kernel uploading, flashing, and driver tools for dual processor tasks. The lab Introduction to Dual Core Development is designed to give the students an introduction to using the LinuxDSP tools and DSP gateway for developing co-processing applications. They are also introduced to the concept of patching a kernel release for compatibility with the target platform. Following the introductory lab, Dual Core Implementation of a FIR Filter gives the students an in depth look at the development process for an application that uses both processing cores to perform real-time filtering of an audio file. Exposed are the concepts of a FIR filter, interprocessor communication, threaded applications, and the representation of devices as files within the Linux operating system. Laboratory Procedure to Introduce Dual Core Development The objective of this lab is to introduce the students to tools that can be used for developing applications that can utilize both processing cores. The students are introduced to the TI supplied 2 3 LinuxDSP tools P the open source DSP Gateway P that allows inter-processor communication. The students are also introduced to the concept of patching a kernel for particular uses, the OMAP platform and DSP Gateway in this case. XFigure 1X a flowchart for the procedures that are followed in the lab. This lab requires that the Linux kernel to be used for the board to be the version. To be suitable for use by the board and this project, the kernel hosted at kernel.org must be patched with the OMAP patch and the DSP Gateway 3.3 patch. The students are guided through this process and the kernel is subsequently built for the OSK board. Students are instructed to configure kernel features that support the DSP Gateway driver using the menuconfig utility. DSP Gateway provides the necessary support for the Linux kernel running on the ARM core to load and execute programs on the DSP core. Also provided with DSP Gateway is a modified version of the TI DSP/BIOS kernel to provide services for DSP tasks. The built kernel is uploaded and flashed into the board s memory to provide the necessary support when the board is booted up. DSP Gateway allows the DSP core to appear as a set of device files to the Linux kernel running on the ARM core. This facilitates application development by presenting a familiar interface to Linux developers for the DSP. However, to load programs into the DSP memory and begin 4 execution, the dspctl utility needs to be built for the ARM side Linux P P. Once built, the students Page

4 have the tools necessary to load and execute DSP tasks and present the interface for Linux programs. Figure 1. Flowchart of procedures for introducing dual core development. At this point, students learn the communications methods used between the ARM and DSP cores. DSP Gateway uses mailbox communication to transfer inter-processor commands and small messages. Mailboxes are useful for transferring commands and low volumes of data. For high volume data transfer, buffers are used and pointers to these buffers are transferred between the processors. The pointers for the buffered data can be transferred through the typical mailbox. Frame buffers set aside large blocks of memory in a memory space that can be accessed by both the ARM and DSP for large volume transfers. The first task students will execute is a demo application that comes with the DSP Gateway tools. The students must build the DSP side application using the TI LinuxDSP tools and copy Page

5 the resultant DSP executable file to the OSK board s file system. There is a complementary application provided for the ARM side which must be built using the ARM GNU cross complier (GCC) utilities. This application is also copied to the board s file system. For the Linux kernel to provide access to DSP tasks as files, files representing the tasks have to be installed as device modules in the /dev directory of the board s file system. This provides a consistent view of the DSP tasks as though each task is a typical Linux device. The Linux model of device presentation represents almost all peripheral devices as though they are files contained in the file system. Data is sent to devices by simply writing to the device files. The students are instructed how to accomplish this and then the students are ready to run the demo application. The students use the dspctl utility to load the DSP executable and start the DSP. Once this is completed, the students only need to run the ARM side demo application to see the results. A sample of the demo applications output can be seen in XFigure X2. Figure 2. Output of the demo application for DSPgateway. Dual Core Implementation of a FIR Filter This lab provides insight to a practical application of the ARM/DSP core combination. The students see the inner workings of a finite impulse response (FIR) filter implemented on the OMAP platform utilizing the DSP Gateway driver. Presented in this lab are digital signal filtering, using predefined C callable DSP routines and buffering to transfer large amounts of Page

6 audio data. The lab also shows how to implement threaded applications in Linux. The flow of operations for this laboratory procedure is shown graphically in XFigure X3. Figure 3. Flow of operations for a dual core FIR filter. Figure 4. Schematic of operation for the FIR filter application. The students are provided with the source code to build a DSP executable for FIR filtering of audio data and source code to build the Linux application that is responsible for sending audio Page

7 data to the DSP for processing. The DSP application makes use of a hand optimized assembly routine for FIR filtering supplied as apart of the TI DSP algorithm set. The programs communicate via the DSP Gateway driver that was installed in lab six..45 Impulse Response Low Pass Filter Characteristics Freqency Response Band Pass Filter Characteristics (1-4kHz).15 Impulse Response Frequency Response Figure 5. Characteristics of the filters used in the audio filtering lab. (Top row) 1 khz lowpass filter response. (Bottom Row) Filter response for the 1 to 4 khz bandpass filter. The DSP program consists of three main functional components: the data receive function, the data send function, and the control functions. The data receive function is used to accept the buffered audio data from the Linux side application and filter it before storing the data. The data send function sends processed data to the Linux application so that the filtered audio can be sent to the audio codec for playing. The control function accepts commands from the Linux application to allow the filter coefficients to be updated for tailored behavior by the user. XFigureX4 shows the basic operations that are accomplished by the FIR filter application. The filter coefficients used by the filtering function are actually the summation of five filters, which can be seen in XFigure X5 and XFigure X6, covering five bands of the audio spectrum. The 5 filters used in this lab were designed by using Matlab s Filter Design and Analysis Tool P P. To allow audio equalizer type of functionality, the user supplies information as to how each audio band should be amplified or attenuated in the Linux application. The Linux application, as can be inferred, provides the user interface to the filtering application. The Linux application is a threaded application that is responsible for sending unfiltered audio data to the DSP and receiving the filtered audio data from the DSP and subsequently sending this data to the audio Page

8 codec to produce sound in one thread. The other thread of the Linux application is responsible for user input to indicate which band is to be altered and how. Band Pass Filter Characteristics (4-8kHz) Band Pass Filter Characteristics (8-14kHz) x 1 4 High Pass Filter Characteristics (14kHz) x 1 4 Figure 6. Characteristics of the filters used in the audio filtering lab. (Top Row) Filter responses for the 4 to 8 khz bandpass filter. (Middle Row) Filter responses for the 8 to 14 khz bandpass filter. (Bottom Row) Filter response for the 14 khz highpass filter. Conclusion These labs provide a strong foundation for developing applications that utilize dual core processors. Students are presented with tools that are common in the development community Page

9 while applying techniques with interesting applications. The labs have been designed to be accessible to anyone with a typical junior level electrical engineering or computer science background. Bibliography 1. M. Humphries, M. Shirvaikar, L. Estevez, "Real Time Systems Laboratory Development Using the TI OMAP Platform," in Proceedings of the 25 American Society for Engineering Education Annual Conference and Exposition, June Linux DSP Tools Downloads. Texas Instruments Incorporated Web Site. (December 4, 25). 3. DSP Gateway. DSP Gateway Project Web Site. (December 4, 25). 4. Kobayashi, Toshiro and Takahashi, Kiyotaka. 25. Linux DSP Gateway Specification Rev 3.3. Nokia. 5. Signal Processing Toolbox The MathWorks, Inc. Page

Lab 1. OMAP5912 Starter Kit (OSK5912)

Lab 1. OMAP5912 Starter Kit (OSK5912) Lab 1. OMAP5912 Starter Kit (OSK5912) Developing DSP Applications 1. Overview In addition to having an ARM926EJ-S core, the OMAP5912 processor has a C55x DSP core. The DSP core can be used by the ARM to

More information

Dual Tone Multi-Frequency (DTMF) Generation with TI-DSP TMS320C6713 Processor

Dual Tone Multi-Frequency (DTMF) Generation with TI-DSP TMS320C6713 Processor Dual Tone Multi-Frequency (DTMF) Generation with TI-DSP TMS320C6713 Processor Objective The goals of this lab are to gain familiarity with TI DSP code composer studio and the TI-DSP Starter Kit (DSK).

More information

Developing Core Software Technologies for TI s OMAP Platform

Developing Core Software Technologies for TI s OMAP Platform SWPY006 - August 2002 White Paper By Justin Helmig Texas Instruments Senior Technical Staff, Wireless Software Applications Texas Instruments OMAP platform for wireless handsets offers a powerful hardware

More information

Embedded SDR for Small Form Factor Systems

Embedded SDR for Small Form Factor Systems Embedded SDR for Small Form Factor Systems Philip Balister, Tom Tsou, and Jeff Reed MPRG Wireless @ Virginia Tech Blacksburg, VA 24060 balister@vt.edu Outline Embedded Software Defined Radio SDR Frameworks

More information

The University of Reduced Instruction Set Computer (MARC)

The University of Reduced Instruction Set Computer (MARC) The University of Reduced Instruction Set Computer (MARC) Abstract We present our design of a VHDL-based, RISC processor instantiated on an FPGA for use in undergraduate electrical engineering courses

More information

DSP/BIOS LINK OMAP2530 EVM LNK 172 USR. Version 1.64 NOV 13, 2009

DSP/BIOS LINK OMAP2530 EVM LNK 172 USR. Version 1.64 NOV 13, 2009 DSP/BIOS LINK OMAP2530 EVM NOV 13, 2009 Document Template Version 1 Page 1 of 21 This page has been intentionally left blank. Page 2 of 21 IMPORTANT NOTICE Texas Instruments Incorporated and its subsidiaries

More information

A DSP Systems Design Course based on TI s C6000 Family of DSPs

A DSP Systems Design Course based on TI s C6000 Family of DSPs A DSP Systems Design Course based on TI s C6000 Family of DSPs Evangelos Zigouris, Athanasios Kalantzopoulos and Evangelos Vassalos Electronics Lab., Electronics and Computers Div., Department of Physics,

More information

Implementation Techniques for DSP

Implementation Techniques for DSP Implementation Techniques for DSP 1 Implementation Techniques for DSP Part 1: Development Tools (3 hours) Part 2: FFT Implementation (6 hours) Introduction The laboratory exercises presented in this handout

More information

Setup the environment for first time use

Setup the environment for first time use SGN-16006 Bachelor s Laboratory Course in Signal Processing Signal processor assignment (June 2, 2014) Setup the environment for first time use Use the following procedure to start Code composer studio

More information

DSP Development Environment: Introductory Exercise for TI TMS320C55x

DSP Development Environment: Introductory Exercise for TI TMS320C55x Connexions module: m13811 1 DSP Development Environment: Introductory Exercise for TI TMS320C55x Thomas Shen David Jun Based on DSP Development Environment: Introductory Exercise for TI TMS320C54x (ECE

More information

Comparison of different microcontroller development boards for power electronics applications

Comparison of different microcontroller development boards for power electronics applications 5 th International Symposium Topical Problems in the Field of Electrical and Power Engineering, Doctoral School of Energy and Geotechnology Kuressaare, Estonia, January 14 19, 2008 Comparison of different

More information

Embedded Target for TI C6000 DSP 2.0 Release Notes

Embedded Target for TI C6000 DSP 2.0 Release Notes 1 Embedded Target for TI C6000 DSP 2.0 Release Notes New Features................... 1-2 Two Virtual Targets Added.............. 1-2 Added C62x DSP Library............... 1-2 Fixed-Point Code Generation

More information

AC : CONCEPTUAL DESIGN ENVIRONMENT FOR AUTOMATED ASSEMBLY LINE FRAMEWORK

AC : CONCEPTUAL DESIGN ENVIRONMENT FOR AUTOMATED ASSEMBLY LINE FRAMEWORK AC 2007-1539: CONCEPTUAL DESIGN ENVIRONMENT FOR AUTOMATED ASSEMBLY LINE FRAMEWORK Sheng-Jen Hsieh, Texas A&M University Dr. Sheng-Jen ( Tony ) Hsieh is an Associate Professor in the College of Engineering

More information

Introduction to Programmable Logic Controllers in a Mechanical Engineering Instrumentation Course

Introduction to Programmable Logic Controllers in a Mechanical Engineering Instrumentation Course Introduction to Programmable Logic Controllers in a Mechanical Engineering Instrumentation Course Joey K. Parker The University of Alabama Session 2366 Introduction and Background Many mechanical engineering

More information

Chapter 7. Hardware Implementation Tools

Chapter 7. Hardware Implementation Tools Hardware Implementation Tools 137 The testing and embedding speech processing algorithm on general purpose PC and dedicated DSP platform require specific hardware implementation tools. Real time digital

More information

Communications. High School Course Guide Arts, A/V Technology, and

Communications. High School Course Guide Arts, A/V Technology, and 8C210 Animation I (R) 1 credit Gr: 10-12 8C215 Animation I (DC) R. Prerequisite: Graphic Design and Illustration, Art I or any Business and Industry Endorsement Principles course Description: (GHS, SGHS

More information

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University Prof. Sunil P. Khatri Lab exercise created and tested by: Abbas Fairouz, Ramu Endluri, He Zhou,

More information

A Sequence of courses using 8, 16, and 32 bit Microcontroller/DSP Boards

A Sequence of courses using 8, 16, and 32 bit Microcontroller/DSP Boards A Sequence of courses using 8, 16, and 32 bit Microcontroller/DSP Boards Hal Broberg, Indiana University-Purdue University Fort Wayne, broberg@ipfw.edu Abstract: Application programming is important and

More information

AC : EMBEDDED SYSTEMS ENGINEERING AREA OF SPECIALIZATION IN THE COMPUTER SCIENCE DEPARTMENT

AC : EMBEDDED SYSTEMS ENGINEERING AREA OF SPECIALIZATION IN THE COMPUTER SCIENCE DEPARTMENT AC 2007-1900: EMBEDDED SYSTEMS ENGINEERING AREA OF SPECIALIZATION IN THE COMPUTER SCIENCE DEPARTMENT Afsaneh Minaie, Utah Valley State College Reza Sanati-Mehrizy, Utah Valley State College American Society

More information

Rapid Prototyping System for Teaching Real-Time Digital Signal Processing

Rapid Prototyping System for Teaching Real-Time Digital Signal Processing IEEE TRANSACTIONS ON EDUCATION, VOL. 43, NO. 1, FEBRUARY 2000 19 Rapid Prototyping System for Teaching Real-Time Digital Signal Processing Woon-Seng Gan, Member, IEEE, Yong-Kim Chong, Wilson Gong, and

More information

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP-088-167 Electronic Systems Engineering Technology BS FOR SEMESTERS Academic

More information

EMBEDDED LINUX ON ARM9 Weekend Workshop

EMBEDDED LINUX ON ARM9 Weekend Workshop Here to take you beyond EMBEDDED LINUX ON ARM9 Weekend Workshop Embedded Linux on ARM9 Weekend workshop Objectives: Get you exposed with various trends in Embedded OS Leverage Opensource tools to build

More information

AC : TEACHING A LABORATORY-BASED IPV6 COURSE IN A DISTANCE EDUCATION ENVIRONMENT

AC : TEACHING A LABORATORY-BASED IPV6 COURSE IN A DISTANCE EDUCATION ENVIRONMENT AC 2007-1962: TEACHING A LABORATORY-BASED IPV6 COURSE IN A DISTANCE EDUCATION ENVIRONMENT Philip Lunsford, East Carolina University Phil Lunsford received a B.S. in Electrical Engineering and a M.S. in

More information

Introduction to EZ430 RF2500

Introduction to EZ430 RF2500 Michigan State University Introduction to EZ430 RF2500 ECE480 Design Team 8 Daniel Sun 3/17/2015 Introduction The EZ430 RF2500 is an TI product that allows the user to practice real time control programming

More information

Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711

Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711 Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711 PreLab due Wednesday, 3 November 2010 Objective: To implement a simple filter using a digital signal processing microprocessor

More information

DSP/BIOS Kernel Scalable, Real-Time Kernel TM. for TMS320 DSPs. Product Bulletin

DSP/BIOS Kernel Scalable, Real-Time Kernel TM. for TMS320 DSPs. Product Bulletin Product Bulletin TM DSP/BIOS Kernel Scalable, Real-Time Kernel TM for TMS320 DSPs Key Features: Fast, deterministic real-time kernel Scalable to very small footprint Tight integration with Code Composer

More information

Here to take you beyond. ECEP Course syllabus. Emertxe Information Technologies ECEP course syllabus

Here to take you beyond. ECEP Course syllabus. Emertxe Information Technologies ECEP course syllabus Here to take you beyond ECEP Course syllabus Module: 1/6 Module name: Linux Systems To get familiar with Linux Operating system Commands, tools and editors Enable you to write Shell scripts To understand

More information

Transition from Simulink to MATLAB in Real-Time Digital Signal Processing Education*

Transition from Simulink to MATLAB in Real-Time Digital Signal Processing Education* Int. J. Engng Ed. Vol. 21, No. 4, pp. 587±595, 2005 0949-149X/91 $3.00+0.00 Printed in Great Britain. # 2005 TEMPUS Publications. Transition from Simulink to MATLAB in Real-Time Digital Signal Processing

More information

TMS320DM642 Evalaution. Technical Modul e Reference DSPDevelopment Systems OSK5912. User's Guide. MontaVista Linux Preview CD-ROM

TMS320DM642 Evalaution. Technical Modul e Reference DSPDevelopment Systems OSK5912. User's Guide. MontaVista Linux Preview CD-ROM 2003 DSPDevelopment Systems OMAP5912 Starter Kit (OSK5912) Users Guide TMS320DM642 Evalaution Module Technical Modul e Reference OSK5912 User's Guide Universal 5V Power Supply 9 Pin Serial Null Modem Cable

More information

AC : INCORPORATING SYSTEM-LEVEL DESIGN TOOLS INTO UPPER-LEVEL DIGITAL DESIGN AND CAPSTONE COURSES

AC : INCORPORATING SYSTEM-LEVEL DESIGN TOOLS INTO UPPER-LEVEL DIGITAL DESIGN AND CAPSTONE COURSES AC 2007-2290: ICORPORATIG SYSTEM-LEVEL DESIG TOOLS ITO UPPER-LEVEL DIGITAL DESIG AD CAPSTOE COURSES Wagdy Mahmoud, University of the District of Columbia IEEE Senior Member American Society for Engineering

More information

Conclusions. Introduction. Objectives. Module Topics

Conclusions. Introduction. Objectives. Module Topics Conclusions Introduction In this chapter a number of design support products and services offered by TI to assist you in the development of your DSP system will be described. Objectives As initially stated

More information

Evaluating MMX Technology Using DSP and Multimedia Applications

Evaluating MMX Technology Using DSP and Multimedia Applications Evaluating MMX Technology Using DSP and Multimedia Applications Ravi Bhargava * Lizy K. John * Brian L. Evans Ramesh Radhakrishnan * November 22, 1999 The University of Texas at Austin Department of Electrical

More information

AC : DESIGN OF DATA ACQUISITION SYSTEM FOR COMPUTER ENGINEERING EDUCATION

AC : DESIGN OF DATA ACQUISITION SYSTEM FOR COMPUTER ENGINEERING EDUCATION AC 2007-3083: DESIGN OF DATA ACQUISITION SYSTEM FOR COMPUTER ENGINEERING EDUCATION Yoon Kim, Virginia State University YOON G. KIM is an Assistant Professor of Computer Engineering in the Department of

More information

ECE 487 LAB 1 ÇANKAYA UNIVERSITY Overview of DSP Board

ECE 487 LAB 1 ÇANKAYA UNIVERSITY Overview of DSP Board ECE 487 LAB 1 ÇANKAYA UNIVERSITY Overview of DSP Board DSP (Digital Signal Processor) boards are used in high performance, high throughput signal processing applications. You can find there processors

More information

CS 378 (Spring 2003) Linux Kernel Programming. Yongguang Zhang. Copyright 2003, Yongguang Zhang

CS 378 (Spring 2003) Linux Kernel Programming. Yongguang Zhang. Copyright 2003, Yongguang Zhang Department of Computer Sciences THE UNIVERSITY OF TEXAS AT AUSTIN CS 378 (Spring 2003) Linux Kernel Programming Yongguang Zhang (ygz@cs.utexas.edu) Copyright 2003, Yongguang Zhang Read Me First Everything

More information

C55x Digital Signal Processors Software Overview

C55x Digital Signal Processors Software Overview C55x Digital Signal Processors Software Overview Agenda C55x Chip Support Library (CSL) Introduction Benefits Structure Example C55x DSP Library (DSPLIB) Introduction Structure Programmer Reference Guide

More information

ELEC 2520 Embedded Systems Engineering II

ELEC 2520 Embedded Systems Engineering II ELEC 2520 Embedded Systems Engineering II University of Colorado Denver College of Engineering and Applied Science Department of Electrical Engineering Term: Spring 2011 Meeting: Tuesday/Thursday 3:30pm-4:45pm

More information

PG Certificate. Embedded, Internet Of Things & Android

PG Certificate. Embedded, Internet Of Things & Android PG Certificate in Embedded, Internet Of Things & Android (Project Based) A Corporate Member of FITT-IIT Delhi An Initiative by Industry Experts from Cadence, Atrenta & Patni with qualification from IITs

More information

Experiment 6 Finite Impulse Response Digital Filter (FIR).

Experiment 6 Finite Impulse Response Digital Filter (FIR). Experiment 6 Finite Impulse Response Digital Filter (FIR). Implementing a real-time FIR digital filtering operations using the TMS320C6713 DSP Starter Kit (DSK). Recollect in the previous experiment 5

More information

Code Generation for TMS320C6x in Ptolemy

Code Generation for TMS320C6x in Ptolemy Code Generation for TMS320C6x in Ptolemy Sresth Kumar, Vikram Sardesai and Hamid Rahim Sheikh EE382C-9 Embedded Software Systems Spring 2000 Abstract Most Electronic Design Automation (EDA) tool vendors

More information

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP-091-167 Electromechanical Systems Engineering Technology BS FOR SEMESTERS Academic

More information

Very Large FFT Multicore DSP Implementation Demonstration Guide

Very Large FFT Multicore DSP Implementation Demonstration Guide Very Large FFT Multicore DSP Implementation Demonstration Guide 1 Very Large FFT Multicore DSP Implementation Demonstration Guide Overview This demo software implements single precision floating point

More information

ECE4703 Laboratory Assignment 5

ECE4703 Laboratory Assignment 5 ECE4703 Laboratory Assignment 5 The goals of this laboratory assignment are: to develop an understanding of frame-based digital signal processing, to familiarize you with computationally efficient techniques

More information

Digital Signal Processing System Design: LabVIEW-Based Hybrid Programming Nasser Kehtarnavaz

Digital Signal Processing System Design: LabVIEW-Based Hybrid Programming Nasser Kehtarnavaz Digital Signal Processing System Design: LabVIEW-Based Hybrid Programming Nasser Kehtarnavaz Digital Signal Processing System Design: LabVIEW-Based Hybrid Programming by Nasser Kehtarnavaz University

More information

Real-Time DSP for Educators

Real-Time DSP for Educators Real-Time DSP for Educators Michael Morrow University of Wisconsin-Madison Thad Welch United States Naval Academy Cameron Wright University of Wyoming Introduction Agenda Motivation DSK and Software Installation

More information

COMPUTER SCIENCE (CSCI)

COMPUTER SCIENCE (CSCI) Bucknell University 1 COMPUTER SCIENCE (CSCI) Faculty Professors: Xiannong Meng, Luiz Felipe Perrone Associate Professors: Stephen M. Guattery (Chair), Brian R. King, Lea D. Wittie Assistant Professors:

More information

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University Prof. Sunil P. Khatri Lab exercise created and tested by: Abbas Fairouz, Ramu Endluri, He Zhou,

More information

Multi-function DSP Experimental System Based on TMS320VC5509 Qiu-feng SHANG and Wei LIU

Multi-function DSP Experimental System Based on TMS320VC5509 Qiu-feng SHANG and Wei LIU 2016 2 nd International Conference on Social, Education and Management Engineering (SEME 2016) ISBN: 978-1-60595-336-6 Multi-function DSP Experimental System Based on TMS320VC5509 Qiu-feng SHANG and Wei

More information

Please consult the Department of Engineering about the Computer Engineering Emphasis.

Please consult the Department of Engineering about the Computer Engineering Emphasis. COMPUTER SCIENCE Computer science is a dynamically growing discipline. ABOUT THE PROGRAM The Department of Computer Science is committed to providing students with a program that includes the basic fundamentals

More information

AC : INTRODUCING LABORATORIES WITH SOFT PROCES- SOR CORES USING FPGAS INTO THE COMPUTER ENGINEERING CURRICULUM

AC : INTRODUCING LABORATORIES WITH SOFT PROCES- SOR CORES USING FPGAS INTO THE COMPUTER ENGINEERING CURRICULUM AC 2012-4159: INTRODUCING LABORATORIES WITH SOFT PROCES- SOR CORES USING FPGAS INTO THE COMPUTER ENGINEERING CURRICULUM Prof. David Henry Hoe, University of Texas, Tyler David Hoe received his Ph.D. in

More information

College of Computing, Engineering & Construction Electrical Engineering Course Descriptions

College of Computing, Engineering & Construction Electrical Engineering Course Descriptions CATALOG 2010-2011 Undergraduate Information College of Computing, Engineering & Construction Electrical Engineering Course Descriptions EEE3308: Electronic Circuits I 3 Prerequisite: EEL 3111. This course

More information

Teaching Computer Architecture with FPGA Soft Processors

Teaching Computer Architecture with FPGA Soft Processors Teaching Computer Architecture with FPGA Soft Processors Dr. Andrew Strelzoff 1 Abstract Computer Architecture has traditionally been taught to Computer Science students using simulation. Students develop

More information

Engineering Technology

Engineering Technology Engineering Technology 1 Engineering Technology Degree Awarded Bachelor of Science in Engineering Technology (B.S.E.T.) Nature of Program The Bachelor of Science in Engineering Technology (B.S.E.T.) is

More information

STUDY GUIDE. Illinois Licensure Testing System. Computer Science (038) This test is now delivered as a computer-based test.

STUDY GUIDE. Illinois Licensure Testing System. Computer Science (038) This test is now delivered as a computer-based test. Illinois Licensure Testing System STUDY GUIDE Computer Science (038) This test is now delivered as a computer-based test. See www.il.nesinc.com for current program information. Illinois State Board of

More information

The CISM Education Plan (updated August 2006)

The CISM Education Plan (updated August 2006) The CISM Education Mission The CISM Education Plan (updated August 2006) The CISM Education Mission is to recruit and train the next generation of space physicists and imbue them with an understanding

More information

MASTER OF ENGINEERING PROGRAM IN INFORMATION

MASTER OF ENGINEERING PROGRAM IN INFORMATION MASTER OF ENGINEERING PROGRAM IN INFORMATION AND COMMUNICATION TECHNOLOGY FOR EMBEDDED SYSTEMS (INTERNATIONAL PROGRAM) Curriculum Title Master of Engineering in Information and Communication Technology

More information

Hands-on with the Sitara Linux SDK

Hands-on with the Sitara Linux SDK Hands-on with the Sitara Linux SDK This presentation provides a hands-on overview of the Sitara Linux SDK. It focuses on the software and tools found in the SDK and how to use these tools to develop for

More information

Embedded SDR System Design Case Study: An Implementation Perspective

Embedded SDR System Design Case Study: An Implementation Perspective Embedded SDR System Design Case Study: An Implementation Perspective Almohanad S. Fayez, Nicholas J. Kaminski, Alexander R. Young, Charles W. Bostian Bradley Department of Electrical and Computer Engineering

More information

2014, IJARCSSE All Rights Reserved Page 461

2014, IJARCSSE All Rights Reserved Page 461 Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Real Time Speech

More information

AC : MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT

AC : MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT AC 2012-4561: MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT Dr. Nikunja Swain, South Carolina State University Nikunja Swain is a professor in the College of Science, Mathematics,

More information

Bachelor of Arts in Media Studies and Production: Media Production Track

Bachelor of Arts in Media Studies and Production: Media Production Track Bachelor of Arts in Media Studies and Production: Media Production Track 1 Bachelor of Arts in Media Studies and Production: Media Production Track The Media Production Professional Option track introduces

More information

COMPUTER SCIENCE AND ENGINEERING (CSEG)

COMPUTER SCIENCE AND ENGINEERING (CSEG) Bucknell University 1 COMPUTER SCIENCE AND ENGINEERING (CSEG) Faculty Professors: Xiannong Meng, Luiz Felipe Perrone Associate Professors: Stephen M. Guattery (Chair), Brian R. King, Lea D. Wittie Assistant

More information

Mechatronics Laboratory Assignment #1 Programming a Digital Signal Processor and the TI OMAPL138 DSP/ARM

Mechatronics Laboratory Assignment #1 Programming a Digital Signal Processor and the TI OMAPL138 DSP/ARM Mechatronics Laboratory Assignment #1 Programming a Digital Signal Processor and the TI OMAPL138 DSP/ARM Recommended Due Date: By your lab time the week of January 29 th Possible Points: If checked off

More information

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP

Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Application Report SLAA175 JUNE 2003 Interfacing the ADS8320/ADS8325 to The TMS320C6711 DSP Lijoy Philipose Data Acquisition Applications ABSTRACT This application note presents a method for interfacing

More information

EMBEDDED SOPC DESIGN WITH NIOS II PROCESSOR AND VHDL EXAMPLES

EMBEDDED SOPC DESIGN WITH NIOS II PROCESSOR AND VHDL EXAMPLES EMBEDDED SOPC DESIGN WITH NIOS II PROCESSOR AND VHDL EXAMPLES Pong P. Chu Cleveland State University A JOHN WILEY & SONS, INC., PUBLICATION PREFACE An SoC (system on a chip) integrates a processor, memory

More information

ECE4703 B Term Laboratory Assignment 2 Floating Point Filters Using the TMS320C6713 DSK Project Code and Report Due at 3 pm 9-Nov-2017

ECE4703 B Term Laboratory Assignment 2 Floating Point Filters Using the TMS320C6713 DSK Project Code and Report Due at 3 pm 9-Nov-2017 ECE4703 B Term 2017 -- Laboratory Assignment 2 Floating Point Filters Using the TMS320C6713 DSK Project Code and Report Due at 3 pm 9-Nov-2017 The goals of this laboratory assignment are: to familiarize

More information

ARM Powered SoCs OpenEmbedded: a framework for toolcha. generation and rootfs management

ARM Powered SoCs OpenEmbedded: a framework for toolcha. generation and rootfs management ARM Powered SoCs OpenEmbedded: a framework for toolchain generation and rootfs management jacopo @ Admstaff Reloaded 12-2010 An overview on commercial ARM-Powered SOCs Many low-cost ARM powered devices

More information

Labs being conducted in CS dept.

Labs being conducted in CS dept. The Structure of the Curriculum: Science & Uttar Pradesh Technical University encapsulates Science and as an Undergraduate Programme program having tenure of VIII semesters and designed to have a total

More information

Accounting Software. Collaboration Software

Accounting Software. Collaboration Software Accounting Software Android Application Software Bitmap Image BlackBerry OS Boot Process Buffer Collaboration Software Command Line Interface Commercial Software An application program that is used to

More information

Name: Key: Done In Progress Possible based on prerequisites

Name: Key: Done In Progress Possible based on prerequisites Name: Key: Done In Progress Possible based on prerequisites 07-08 Mechanical Engineering Curriculum This chart was prepared by Freshman Engineering using the 07-08 catalog. It is designed to assist in

More information

QuickGuide for SEAS CS Students (New Requirements Beginning Fall 2012)

QuickGuide for SEAS CS Students (New Requirements Beginning Fall 2012) QuickGuide for SEAS CS Students (New Requirements Beginning Fall 2012) This QuickGuide is for SEAS students thinking of majoring or minoring in Computer Science. It explains how the program is structured,

More information

computer science (CSCI)

computer science (CSCI) computer science (CSCI) CSCI overview programs available courses of instruction flowcharts Computer scientists and engineers design and implement efficient software and hardware solutions to computer-solvable

More information

CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II

CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II CORRIGENDUM ISSUED FOR NATIONAL COMPETITIVE BIDDING UNDER TEQIP PHASE-II The prebid meeting for the packages to be purchased under national competitive bidding for TEQIP Phase II was held on 15/10/2013

More information

Embedded Systems Laboratory Manual ARM 9 TDMI

Embedded Systems Laboratory Manual ARM 9 TDMI Embedded Systems Laboratory Manual ARM 9 TDMI 1. Laboratory Rules a) Laboratory assessment: Presence during the laboratory is mandatory. One time unexcused absence is allowed within the semester. Students

More information

Chapter 3 Computer Software

Chapter 3 Computer Software Chapter 3 Computer Software Learning Objectives LO3.1: Explain system software and operating systems LO3.2: Identify operating systems for desktop PCs LO3.3: Identify operating systems for handheld PCs

More information

The University of Jordan. Accreditation & Quality Assurance Center. Curriculum for Doctorate Degree

The University of Jordan. Accreditation & Quality Assurance Center. Curriculum for Doctorate Degree Accreditation & Quality Assurance Center Curriculum for Doctorate Degree 1. Faculty King Abdullah II School for Information Technology 2. Department Computer Science الدكتوراة في علم الحاسوب (Arabic).3

More information

DevKit8000 Evaluation Kit

DevKit8000 Evaluation Kit DevKit8000 Evaluation Kit TI OMAP3530 Processor based on 600MHz ARM Cortex-A8 core Memory supporting 256MByte DDR SDRAM and 256MByte NAND Flash UART, USB Host/OTG, Ethernet, Camera, Audio, SD, Keyboard,

More information

All MSEE students are required to take the following two core courses: Linear systems Probability and Random Processes

All MSEE students are required to take the following two core courses: Linear systems Probability and Random Processes MSEE Curriculum All MSEE students are required to take the following two core courses: 3531-571 Linear systems 3531-507 Probability and Random Processes The course requirements for students majoring in

More information

Computer Science (CS)

Computer Science (CS) The University of Alabama in Huntsville 1 Computer Science (CS) CS 100 - INTRO COMPUTERS & PROGRAM Introduction to program design and implementation in the Visual Basic programming language, using hands-on

More information

An FPGA Project for use in a Digital Logic Course

An FPGA Project for use in a Digital Logic Course Session 3226 An FPGA Project for use in a Digital Logic Course Daniel C. Gray, Thomas D. Wagner United States Military Academy Abstract The Digital Computer Logic Course offered at the United States Military

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

Developing and Integrating FPGA Co-processors with the Tic6x Family of DSP Processors

Developing and Integrating FPGA Co-processors with the Tic6x Family of DSP Processors Developing and Integrating FPGA Co-processors with the Tic6x Family of DSP Processors Paul Ekas, DSP Engineering, Altera Corp. pekas@altera.com, Tel: (408) 544-8388, Fax: (408) 544-6424 Altera Corp., 101

More information

Pros and Cons of replacing discrete logic with programmable logic in introductory digital logic courses.

Pros and Cons of replacing discrete logic with programmable logic in introductory digital logic courses. Session 2532 Pros and Cons of replacing discrete logic with programmable logic in introductory digital logic courses. Kevin Nickels Trinity University Abstract Digital circuit construction with small-scale

More information

Master Course in Computer Science Orientation day

Master Course in Computer Science Orientation day Master Course in Computer Science Orientation day Info on the Department of Computer Science Ranked first (in its area) in 5-year Research Assessment by Ministry of University and Research 2013 e 2017

More information

iphone Noise Filtration Hardware

iphone Noise Filtration Hardware Iowa State University ECPE Senior Design iphone Noise Filtration Hardware Design Plan Michael Bullis Andrew Mungons Yang Yang 2011 Client Rockwell Collins Faculty Advisor Dr. Zhengdao Wang G r o u p M

More information

CompTIA A+ Complete Study Guide. Course Outline. CompTIA A+ Complete Study Guide. 18 Oct

CompTIA A+ Complete Study Guide. Course Outline. CompTIA A+ Complete Study Guide. 18 Oct Course Outline CompTIA A+ Complete Study Guide 18 Oct 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training

More information

& CompTIA A+ Complete Study Guide. Course Outline. CompTIA A+ Complete Study Guide.

& CompTIA A+ Complete Study Guide. Course Outline. CompTIA A+ Complete Study Guide. Course Outline CompTIA A+ Complete Study 27 Mar 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5.

More information

XDS200 ISO Operating Guide

XDS200 ISO Operating Guide XDS200 ISO Operating Guide Wintech Dig ital System Technology Co., Ltd www.wintechdigital.com 1 About This Manual IMPORTANT INFORMATION This Installation Guide is for the Wintech Digital XDS200 ISO JTAG

More information

COMMON MODULES: Aerospace Electronics, Computer & Mobile Technology, and Microelectronics specialisations and the Minor in Business Management

COMMON MODULES: Aerospace Electronics, Computer & Mobile Technology, and Microelectronics specialisations and the Minor in Business Management COURSE MODULES LEVEL 3.1 & 3.2 6-Month Internship In this module, students will be attached to sponsoring companies for a period of approximately six months. During their internships, students will undertake

More information

SignalMaster Manual Version PN: M072005

SignalMaster Manual Version PN: M072005 SignalMaster Manual Version 1.02 20180822 - PN: M072005 SignalMaster Hardware Version 2.00 Intelligent Hearing Systems, Corp. 6860 S.W. 81 st Street Miami, FL 33143 - USA Introduction: SignalMaster was

More information

How to Get Started With DSP/BIOS II

How to Get Started With DSP/BIOS II Application Report SPRA697 October 2000 Andy The David W. Dart How to Get Started With DSP/BIOS II Software Field Sales Software Development Systems ABSTRACT DSP/BIOS II is Texas Instruments real time

More information

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v5.1: A BRIEF TUTORIAL FOR THE OMAP-L138 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing

More information

C55x Digital Signal Processors Software Overview

C55x Digital Signal Processors Software Overview C55x Digital Signal Processors C55x Digital Signal Processors Software Overview Agenda C55x Chip Support Library (CSL) Introduction Benefits Structure Example C55x DSP Library (DSPLIB) Introduction Structure

More information

Understanding Basic DSP/BIOS Features

Understanding Basic DSP/BIOS Features Application Report SPRA653 - April 2000 Understanding Basic DSP/BIOS Features Henry Yiu Texas Instruments, China ABSTRACT DSP/BIOS is a small firmware that runs on digital signal processor (DSP) chips.

More information

The DSP/BIOS Bridge. Víctor Manuel Jáquez Leal. 06 February Igalia

The DSP/BIOS Bridge. Víctor Manuel Jáquez Leal. 06 February Igalia Víctor Manuel Jáquez Leal Igalia 06 February 2010 Víctor Manuel Jáquez Leal (Igalia) The DSP/BIOS Bridge 06 February 2010 1 / 41 The TI OMAP3 processor 1 The TI OMAP3 processor 2 The DSP/BIOS Bridge 3

More information

CompTIA A Exam 2. Course Outline. CompTIA A Exam Oct

CompTIA A Exam 2. Course Outline. CompTIA A Exam Oct Course Outline 05 Oct 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5. ADA Compliant & JAWS Compatible

More information

DIABLO VALLEY COLLEGE CATALOG

DIABLO VALLEY COLLEGE CATALOG ART DIGITAL MEDIA ARTDM Toni Fannin, Dean Applied and Fine Arts Division Business and Foreign Language Building, Room 204 Possible career opportunities Digital media or graphic design jobs cover all ends

More information

B.A. in Information Systems

B.A. in Information Systems General Elective 1 Term Credits 15 B.A. in Information Systems 1 B.A. in Information Systems (120 credits minimum) Course Title Credits First Year CS 100 Roadmap to Computing HUM 101 English Composition:

More information

Short Term Courses (Including Project Work)

Short Term Courses (Including Project Work) Short Term Courses (Including Project Work) Courses: 1.) Microcontrollers and Embedded C Programming (8051, PIC & ARM, includes a project on Robotics) 2.) DSP (Code Composer Studio & MATLAB, includes Embedded

More information

Associate Diploma in Web and Multimedia Development

Associate Diploma in Web and Multimedia Development Associate Diploma in Web and Multimedia Development Program Components CRD Major Support 4% University 8% University (UR) 5 College (CR) 9 Major (MR) 49 College 14% Major Support (MSR) 3 Training (Internship)

More information