Lab 7 Instructions By Yeong Choo and Sam Kanawati

Slides:



Advertisements
Similar presentations
Chapter 21b Reference Frameworks. Dr. Naim Dahnoun, Bristol University, (c) Texas Instruments 2004 Chapter 21b, Slide 2 Learning Objectives Introduce.
Advertisements

Remote - DSP Lab for Distance Education
Lab7: Introduction to Arduino
By: Russ Butler ECE4220 Spring 2012 Dr. DeSouza May 2, 2012.
Quickfilter Pro Software Demonstration for QF4A512 The following slides will illustrate how you can design and verify a filter design in minutes! BEGIN.
Guitar Effects Processor Using DSP
Final Year Project Progress January 2007 By Daire O’Neill 4EE.
Optical SmartLink EE513 Communication Electronics Zheng Wang Xin Li Jialock Wong.
0 - 1 © 2010 Texas Instruments Inc Practical Audio Experiments using the TMS320C5505 USB Stick “Sine Waves” Texas Instruments University Programme Teaching.
Quickfilter Pro Software Demonstration for QF1D512 The following slides will illustrate how you can design and verify a filter design in minutes! BEGIN.
2/17/2007DSP Course-IUST-Spring Semester 1 Digital Signal Processing Electrical Engineering Department Iran University of Science & Tech.
Musical Sound Processing Student Name: 鄭建健
How to Start Up CCStudio 3 DSP LAB T.A.:
Technion – Israel Institute of Technology Department of Electrical Engineering High Speed Digital Systems Lab Project performed by: Naor Huri Idan Shmuel.
DSP Implementation of a 1961 Fender Champ Amplifier James Siegle Advisor: Dr. Thomas L. Stewart April 8, 2003.
1 How to Start Up CCStudio 3 DSP LAB T.A.:. 2 Device Setup Double-click “ Setup CCStudio3 ” on desktop, and you will see the above dialog.
0 - 1 © 2007 Texas Instruments Inc, Content developed in partnership with Tel-Aviv University From MATLAB ® and Simulink ® to Real Time with TI DSPs Echo.
VC707 Power Bus Reprogramming
DSP Term Project By: Ashley Downs And Jeff Malen By: Ashley Downs And Jeff Malen.
Sub-band Mixing and Addition of Digital Effects for Consumer Audio ELECTRICAL & ELECTRONIC ENGINEERING FINAL YEAR PROJECTS 2012/2013 Presented by Fionn.
EE513 Audio Signals and Systems Digital Signal Processing (Systems) Kevin D. Donohue Electrical and Computer Engineering University of Kentucky.
DSP. What is DSP? DSP: Digital Signal Processing---Using a digital process (e.g., a program running on a microprocessor) to modify a digital representation.
“TMS320C5505 USB Stick Teaching Materials”
Electronic Devices Laboratory CE/EE 3110 Introduction to LabView.
Interrupt Controller for DSP-based Control of Multi-Rail DC-DC Converters with Non-Integer Switching Frequency Ratio James Mooney, Simon Effler, Mark Halton,
PIKA Technologies Inc. Digital Logger Application Sample April 2010.
Digital Signal Processing and Generation for a DC Current Transformer for Particle Accelerators Silvia Zorzetti.
Sonia Hingorany & Liza Cyriac EE113D – Professor Rajeev Jain & TA Rick Huang– Winter 2008.
LIST OF EXPERIMENTS USING TMS320C5X Study of various addressing modes of DSP using simple programming examples Sampling of input signal and display Implementation.
Lecture 10b Adaptive Filters. 2 Learning Objectives  Introduction to adaptive filtering.  LMS update algorithm.  Implementation of an adaptive filter.
PIKA Technologies Inc. Digital Logger Application Sample March 2010.
Automatic Equalization for Live Venue Sound Systems Damien Dooley, Final Year ECE Progress To Date, Monday 21 st January 2008.
Confidential Document number: PDS-1SG Demo Instruction for IMS registration of XT912 April 2012 Anritsu.
FOCOMM_CAMAC Setup and Usage Guide Andrew Wong, Larry Ruckman.
Prof. Brian L. Evans Dept. of Electrical and Computer Engineering The University of Texas at Austin EE445S Real-Time Digital Signal Processing Lab Spring.
DE2-115 Control Panel - Part I
Lab 1: Using NIOS II processor for code execution on FPGA
  Digital Signal Processing Implementation of a 1961 Fender Champ Amplifier
Echo and Reverberation
MODULE 2: Circuits, Signals and the Analog Discovery Board SUMMER CHALLENGE Electrical Engineering: Smart Lighting Michael Rahaim, PhD Candidate Multimedia.
Voice Manipulator Department of Electrical & Computer Engineering
DE2-115 Control Panel - Part II
New LED driver Preliminary tests
Embedded Systems Design
THS5671EVM Test with TSW1400EVM
EE Audio Signals and Systems
This chapter provides a series of applications.
FFT Window Functions Practical Applications
Lab 1 Instructions By Yeong Choo and Sam Kanawati
Introduction to Digital Signal Processors (DSPs)
Lab 6 Part I Instructions
Lab 1: (i) TIMS introduction (ii) Modeling an Equation
EE 445S Real-Time Digital Signal Processing Lab Spring 2017
Neurochip3.
Lab 5 Part II Instructions
Lab 6 Part II Instructions
PAVIRO - Introduction Security Systems
Lab 4 Instructions By Yeong Choo and Sam Kanawati
Chapter 21b Reference Frameworks
Wheelchair Navigation Aid
Lab 3 Part III Instructions
EE 445S Real-Time Digital Signal Processing Lab Spring 2012
Lab 3 Part II Instructions
By Yeong Choo and Sam Kanawati
Lab 2 Part II Instructions
Lab 2 Part I Instructions
Debug Tools (GDB+DDD) on Andes platform
Wireless Electrocardiogram System Senior Project
Fixed-point Analysis of Digital Filters
Lab 6: Week 1 Quadrature Amplitude Modulation (QAM) Transmitter
Presentation transcript:

Lab 7 Instructions By Yeong Choo and Sam Kanawati The University of Texas at Austin, April 29, 2018

WinDSK Demonstration Connect your DSP board with the PC through the USB-UART cable. Hardware setup using auxiliary cable: Connect between your PC/ smart phone and audio line-in jack of the DSP board (Your PC/ smart phone as the digital audio signal source) Connect between the audio line-out jack of the DSP board and the oscilloscope Run “audio effects” in WinDSK, test different special effects through earphone Display the output of special effect on the oscilloscope, and show the FFT on one of the channel 1st checkpoint with TA when you have both screenshots ready Describe bandwidth of digital audio signal, any harmonics observed

DSK implementation Echo Effect Create a new project with the source files in “../chapter_10/ccs/Echo” You can only load one ISR file in your project at a time. You may also load multiple ISR file in your project but include only one for each project compilation To include only one ISR file in project build: Select the remaining ISRs, right click to “exclude from build” Run the program and listen to the echo effect generated by FIR and IIR comb filters. Display the original audio signals on one channel, the audio signals with echo effect on another channel Show the FFT on the channel with audio signal with echo effect 2nd checkpoint with TA when you have both screenshots ready Describe bandwidth of digital audio signal, any harmonics observed

DSK implementation Flanging Effect In this task you need to modify the code to implement the flanging effect. The flanging effect needs a FIR comb filter with a varying delay (equation given). Here we choose the maximum delay to be 1ms. So R = 48 (given that fs = 48 KHz). Set f0 in the equation to be 15 Hz. Modify the code in the original codes in the Echo effect ISR routine to implement this FIR comb filter with flanging effect. Display the original audio signals on one channel, the audio signals with flanging effect on another channel Show the FFT on the channel with audio signal with flanging effect 3rd checkpoint with TA when you have both screenshots ready Describe the effect of flanging parameters, R and fo, on the overall audio effect