Digital Signal Processing Reference
In-Depth Information
TI 3.3 V Power Supply
2M x 16M SDRAM (2)
128K x 8-bit
Flash ROM
EVM Compatible
Daughter Card I/F
PC Parallel
Port Interface
TMS320C6211 DSP
Power Jack
Power LED
EVM Compatible
Daughter Card I/F
User Option
DIP Switches
User LED1, LED2, LED3
Reset
Pushbutton
Emulation
JTAG Controller
TLC320AD535 16-Bit
Data Converter
TI 1.8 V Power Supply
JTAG Header
Line Level I/O Microphone
Line Level I/O Speakers
FIGURE E.3
Photograph of Texas Instruments TMS320C6711 DSK. ( Courtesy of Texas Instruments Inc., Dallas,
TX. )
E.6
C Files for Practical Applications Using the 'C6711 DSK
This section lists C files for some practical DSP projects that are possible
using the TMS320C6711 DSP Starter Kit. We can separate the applications
discussed here into three broad categories: signal generation applications,
spectral analysis applications using FFT, and digital filtering applications.
E.6.1
Signal Generation Applications Using the 'C6711 DSK
Sine wave generation using a look-up table
//Sinegen_table.c Generates a sinusoid for a look-up
table
#include <math.h>
#define table_size (short)10
//set table size
short sine_table[table_size];
//sine table array
short i;
interrupt void c_int11() //interrupt service routine
{
output_sample(sine_table[i]);//output each sine value
 
 
Search WWH ::




Custom Search