<< Chapter < Page Chapter >> Page >
This module is a laboratory assignment to implement an echo function.

Introduction

In this laboratory you will use a program that gathers data from an A/D converter, processes the data, and outputs to a D/A converter. The signal processing portion will be added by you to perform an echo function. After this laboratory you should:

  • Understand how data is received from an A/D converter and sent to a D/A converter
  • Understand how signal processing is done in "real-time"
  • Be able to implement a simple signal processing algorithm using "block processing" techniques

Laboratory assignment

In the laboratory you will be making a delay function or an echo. To make an echo you will need to delay the data that is coming into the DSP. This is usually accomplished using a buffer that is used to store previous input values. Use a circular buffer to store the input data. The length of the buffer is determined by

N = Delay SampleRate size 12{N= ital "Delay" cdot ital "SampleRate"} {}

In order to implement the delay an array of sufficient size must be defined. When a function is called, the local variables will go onto the stack. The stack is usually small compared to other memory sections. Therefore, the number of local variables for a function is limited. Since the array for storing the previous inputs will be large, the array should be stored somewhere else in memory besides on the stack. If the Memory Model in the build options is set to Far Aggregate then the global variables and the local static variables will be put into the .far section. This section can be set to the large external memory. Therefore, the array that stores the delay values should be defined as either a global or static local variable . A static local variable is a variable that is not initialized each time a function is called. The static variable will retain the value it had the last time the function was called. To make a static variable just use the static keyword in front of the variable definition.

static int static_var, static_array[10];

You need to make sure the .far section is set to a large memory section. For our project, set it to the SDRAM memory. To change the location of the .far section in the project you should:

  • Open the project DSK6713_audio.pjt
  • Open the configuration file DSK6713_audio.tcf
  • Right click on System->MEM and open Properties
  • Click on the Compiler Sections tab
  • On the pull down menu next to the .far section select SDRAM

Pre-laboratory

  • If your sample rate is 8000 Hz and you want a delay of 1/2 second, how long should your delay buffer be?
  • The main loop in the default I/O program simply inputs a block of data and then outputs a block of data. You need to modify the main loop so that it will take an input sample, store it in the circular buffer and output the sample that is delayed by 1/2 second. Your code should implement a circular buffer . Also, make sure you initialize the buffer with zeros so that you won't output whatever happens to be in the memory.
  • What is the transfer function, H(z), of the system in the following figure? What is the difference equation? What would happen if you set the feedback gain to a value greater than 1?
  • Write another program that will implement a fading echo shown in following figure. The output of the delay is fed back to the input of the delay and added to the input.

Laboratory

Part 1

  • In this part you will just get the template project working that simply outputs whatever was input.
  • Open the project DSK6713_audio.pjt .
  • Change the parameters in the DSK6713_audio.c file so that the sampling rate is 8000 Hz and the input is from the microphone.
  • Connect a microphone to the DSK board microphone input and the speakers to the line out.
  • Build, load and run the project.
  • Verify that as you speak into the microphone you hear yourself on the speakers.

Part 2

  • Modify the program DSK6713_audio.c so that one channel of output is delayed by 1/2 second. Make sure to define your stored samples array as a global or static array in external memory.
  • Build, load and run the project.
  • Demonstrate that you get a 1/2 second delay in the output.

Part 3

  • Modify the program DSK6713_audio.c to implement the fading echo.
  • Build, load and run the project.
  • Demonstrate that you get a 1/2 second delay in the output.
  • What would happen if you set the feedback gain to a value greater that 1?

Questions & Answers

how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
what is inflammation
Shelly Reply
part of a tissue or an organ being wounded or bruised.
Wilfred
what term is used to name and classify microorganisms?
Micheal Reply
Binomial nomenclature
adeolu
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Dsp lab with ti c6x dsp and c6713 dsk. OpenStax CNX. Feb 18, 2013 Download for free at http://cnx.org/content/col11264/1.6
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Dsp lab with ti c6x dsp and c6713 dsk' conversation and receive update notifications?

Ask