Welcome to the home page for ECE4703 "Real-Time Digital Signal Processing" for B-term 2013.
announcements and lecture slides
- [16-Dec-2013] Lecture 12. We discussed adaptive filtering for noise cancellation and equalization. I demonstrated noise cancellation using the TMS320C6713 DSK in class with the Lab 6 sound files. We also went over the final exam topics and distributed the course evaluations.
- [12-Dec-2013] Lecture 11. Some example Matlab code to demonstrate LMS-adapted unknown system identification. Although this code is vectorized to run fast in Matlab, you might find this useful for getting started on your C code for Lab 6. Also, some example Matlab code demonstrating the concept of gradient descent and LMS for unknown system identification with a non-white input signal.
- [09-Dec-2013] Lecture 10. We began our study of adaptive filtering by covering the MMSE criterion, batch calculation of MMSE filter coefficients, and gradient descent methods. Example Matlab code demonstrating the concept of gradient descent and LMS for unknown system identification. Example Matlab code that you can use to perform system identification using the brute-force correlation and matrix inversion method.
- [05-Dec-2013] Lecture 9. Matlab demo showing complexity trends of the FFT and DFT. This demo needs the support function dft.m. Also, slides for the complexity analysis of the FFT and FFT butterfly diagrams from the Thad Welch textbook. And finally, Texas Instruments documentation on bit-reversal and digit-reversal. If you are interested, this discusses how the TI bitrev.sa and digitrev_index.c functions work and how they are memory and computationally efficient.
- [02-Dec-2013] Lecture 8 was an on-board discussion of frame-by-frame processing, asymptotic complexity of algorithms, and fast convolution.
- [25-Nov-2013] Lecture 7 finished the slides from lecture 6 and covered efficient ASM coding on the C6713. We discussed the use of schedule tables. This example code is for the dot product examples covered in lecture. In particular, note the #pragma DATA_ALIGN for forcing the compiler to properly align the arrays for double-word loads.
- [18-Nov-2013] Lecture 6 covered fixed-point IIR filtering. We discussed how to come up with a reasonable "shift plan" and the fixed-point IIR Matlab simulator. I will then start these slides on assembly language programming on the C6713. An example C program for calling two assembly language functions (donothing.asm) and (test_asm.asm) may also be useful for understanding the examples and getting started on Lab 4.
- [14-Nov-2013] Lecture 5 was an on-board discussion about fixed-point multiplication, fixed-point addition, and fixed-point FIR filtering. We also looked at the FIR filtering demo fixedpoint_fir_demo_pt3.m.
- [11-Nov-2013] Lecture 4 was an on-board discussion about DFII-SOS IIR filtering and fixed-point FIR filtering. We also covered good strategies for fixed-point multiplication and discussed some tools you can use in the Matlab Fixed-Point Toolbox and looked at the demos fixedpoint_fir_demo_pt1.m and fixedpoint_fir_demo_pt2.m.
- [07-Nov-2013] Lecture 3 was an on-board discussion of implementation strategies for real-time FIR and IIR filtering with floating point arithmetic. Here is the handout on realization structures.
- [04-Nov-2013] Lecture 2 slides (pdf) and some aliasing and quantization audio examples.
- [31-Oct-2013] Lecture 1 slides (pdf).
- [30-Oct-2013] First lab session hardware introduction and software introduction (pdf).
- [29-Oct-2013] An email was sent to the class mailing alias ece4703@ece.wpi.edu today. If you did not receive this email, please contact Prof. Brown.
general
There is no required textbook for this course. In the past, we have used Real-Time Digital Signal Processing: Based on the TMS320C6000 by Nasser Kehtarnavaz and Digital Signal Processing and Applications with the TMS320C6713 and TMS320C6416 DSK by Donald Reay and Rulph Chassaing. Both of these books are good references, but are not required for the course.
The course syllabus (pdf) including expected course outcomes, grading information, and late policies.
ECE4703 academic honesty policies.
ECE4703 students with disabilities statement.
links and files
- How to configure Code Composer Studio v5 for use with the C6713 DSK.
- How to build and run a "Hello World" project from a project template on the C6713 DSK in Code Composer Studio v5.
- How to create, build, run, and test a simple stereo loop project on the C6713 DSK in Code Composer Studio v5.
- Here is a three minute screencast showing how to profile code running on the C6713 DSK using breakpoint/stopwatch profiling in CCS v5. This type of profiling is convenient, but is known to be less accurate than using a cycle accurate simulator.
- Here is a seven minute screencast showing how to profile code using the CCS v5 profiling tools on a cycle accurate simulator. This approach tends to give more accurate results than breakpoint/stopwatch profiling, but you have to modify your code or make a new project. The keys here are: (i) remove all calls to BSL library functions, (ii) remove the code that sets up interrupts, change any interrupt service routines to regular functions, and remove vectors.asm, and (iii) change the target configuration to a cycle accurate simulator. Here is the code I used in the screencast: simulatortester.c.
- Other useful links and files.
laboratory assignments
General report and project code submission guidelines (pdf).
lab 1: familiarization with ccs and the dsk
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 07-Nov-2013.
lab 2: floating-point FIR and IIR filtering
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 14-Nov-2013.
lab 3: fixed-point FIR and IIR filtering
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 21-Nov-2013.
lab 4: hand-optimized assembly language programming
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 05-Dec-2013.
lab 5: fast convolution FIR filtering
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 12-Dec-2013
Here are the TI files needed for the radix-2 FFT: cfftr2_dit.sa, bitrev.sa, and digitrev_index.c. Here also some example main code that shows how to correctly use TI's optimized FFT code (including the critical pragmas to ensure buffer alignment). Careful study of this example project should be helpful in the Laboratory 5 assignment.
lab 6: adaptive filtering
Assignment (pdf) and grade sheet. Project report and CCS files due by 3:00pm on 19-Dec-2013. Due to grading constraints, no late submissions can be accepted.
Useful files for testing your code: lab6part1.zip (three unknown systems to identify) and lab6part2.wav (noise cancellation sound file). The song in part 2 is The Distance by Cake.
examinations
The midterm examination is scheduled for November 21.
The final examination is scheduled for December 19.
homework
No homework is assigned in this course.