The aim of this experiment is to
Sinusoidal waveforms will be computed in discrete time, plotted, and played as audio signals.
Downloads
Recitation slides Part 1 and Part 2 by Mr. Jinseok Choi, Mr. Sam Kanawati, Ms. Debarati Kundu and Mr. Shreyas Rao, The University of Texas at Austin
Lab instructions Part 1 and Part 2 by Mr. Yeong Choo, Mr. Dan Jacobellis, Mr. Sam Kanawati, and Mr. Yunseong Cho, The University of Texas at Austin
Design tradeoffs in computing sinusoidal signals by Prof. Brian L. Evans, The University of Texas at Austin (see slides 1-17 to 1-22)
MATLAB code to compute, plot and play sinusoidal signals:
Supplemental Information
Updated EDMA files for the DSP Board as a zip archive for week 2 of lab 2
C code for casting float to short int by Prof. Brian L. Evans, The University of Texas at Austin
Overview Slides by Prof. Steven Tretter, University of Maryland (from Jan. 2008 lab manual)
LabVIEW transmitter demonstration by Dr. Zukang Shen to show how labs 1-6 fit together
Lab Report
Please turn in one lab report per two-person team. Include the following sections in the Lab #2 report and in future reports:
Debugging and Troubleshooting Tips
When connecting the USB cable from the PC to the C6748 DSP board, please use the USB port on the opposite side of the board from the power connector.
Here are troubleshooting tips for Code Composer Studio v5.
Here are troubleshooting tips if you see an incorrect sinusoid on the oscilloscope:
Discrete-Time Resonator Implementation
The Welch, Wright and Morrow book has C code in Section 5.4.4 to generate a sine wave using a discrete-time resonator.
The difference equation to generate sin(w0 n) u(n) is
y[n] = sin(w0) x[n-1] + 2 cos(w0) y[n-1] - y[n-2]
and the input signal x[n] is the discrete-time impulse.
At n = 0, we have x[n] = 1, x[n-1] = 0, y[n-1] = 0, y[n-2] = 0, which gives y[n] = 0)
At n = 1, we have x[n] = 0, x[n-1] = 1, y[n-1] = 0, y[n-2] = 0, which gives y[n] = sin(w0)
At n = 2; we have x[n] = 0, x[n-1] = 0, y[n-1] = sin(w0), y[n-2] = 0, which gives y[n] = 2 cos(w0) sin(w0) = sin(2 w0) when using the following trigonometric identity:
sin(x) cos(y) = 1/2 ( sin(x-y) + sin(x+y) )
Issue #1. The code in Section 5.4.4 starts the difference equation at n = 2. As a result, the code in the book will generate a shifted version of sin(w0 n) u(n).
When w0 = pi/2, a shift in the sine wave by two samples will generate a negated sine wave:
sin(pi/2 (n - 2)) = sin((pi/2) n - pi) = -sin((pi/2) n)
When f0 = 2 kHz and fs = 8 kHz, we have w0 = 2 pi f0 / fs = pi/2, and hence, the shifted sine wave generated by the code in Welch, Wright and Morrow looks like -sin(w0 n).
Issue #2. The code in the book is inefficient and difficult to follow. To improve efficiency and clarity, one could change
float y[3] = {0 , 1 , 0} ; .... CodecDataOut.Channel[LEFT] = A * sinf(theta) * y[0]; // scaleto
float y[3] = {0 , sinf(theta) , 0} ; .... CodecDataOut.Channel[LEFT] = A * y [0]; // scaleAnd, for additional efficiency, one could replace
sinf(theta)
and cosf(theta)
with constants because theta
is a constant.
There is no reason to call the sinf and cosf functions because the values can be computed offline for a constant theta. And, the whole point of using the difference equation in the first place is to avoid calling a math routine.
Useful references
Texas Instruments TMS320C6748 processor, board, and tools