<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE document PUBLIC "-//CNX//DTD CNXML 0.5 plus MathML//EN" "http://cnx.rice.edu/cnxml/0.5/DTD/cnxml_mathml.dtd">
<document xmlns="http://cnx.rice.edu/cnxml" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:md="http://cnx.rice.edu/mdml/0.4" xmlns:bib="http://bibtexml.sf.net/" id="m10017">
  
  <name>DSP Development Environment: Introductory Exercise for TI TMS320C55x</name>
  <metadata>
  <md:version>1.8</md:version>
  <md:created>2006/08/20 22:43:13 GMT-5</md:created>
  <md:revised>2007/03/15 12:04:24.656 GMT-5</md:revised>
  <md:authorlist>
      <md:author id="tbshen">
      <md:firstname>Thomas</md:firstname>
      
      <md:surname>Shen</md:surname>
      <md:email>tbshen@uiuc.edu</md:email>
    </md:author>
  </md:authorlist>

  <md:maintainerlist>
    <md:maintainer id="tbshen">
      <md:firstname>Thomas</md:firstname>
      
      <md:surname>Shen</md:surname>
      <md:email>tbshen@uiuc.edu</md:email>
    </md:maintainer>
  </md:maintainerlist>
  
  <md:keywordlist>
    <md:keyword>anti-aliasing filter</md:keyword>
    <md:keyword>anti-imaging filter</md:keyword>
    <md:keyword>Code Composer Studio</md:keyword>
    <md:keyword>DSP</md:keyword>
    <md:keyword>FIR filter</md:keyword>
    <md:keyword>function generator</md:keyword>
    <md:keyword>MATLAB</md:keyword>
    <md:keyword>oscilliscope</md:keyword>
    <md:keyword>test vector</md:keyword>
    <md:keyword>TMS320C55x</md:keyword>
  </md:keywordlist>

  <md:abstract>This exercise introduces the hardware and software used in the course. By the end of this module, you should be comfortable with the basics of testing a simple real-time DSP system with Code Composer Studio, the debugging environment we will be using throughout the semester. First you will connect the laboratory equipment and test a real-time DSP system with provided code to implement an eight-tap (eight coefficient) finite impulse response (FIR) filter. With
a working system available, you will then begin to explore the debugging software used for downloading, modifying,
and testing your code. Finally, you will create a filter in MATLAB and use test vectors to verify the DSP's output.</md:abstract>
</metadata>

  
  <content>
    <section id="intro">
      <name>Introduction</name>
      <para id="introp1">
        This exercise introduces the hardware and software used in
        testing a simple DSP system.  When you complete it, you should
        be comfortable with the basics of testing a simple real-time
        DSP system with the debugging environment you will use
        throughout the course.  First, you will connect the laboratory
        equipment and test a real-time DSP system with pre-written
        code to implement an eight-tap (eight coefficient)
        <term>finite impulse response</term> (<term>FIR</term>)
        filter.  With a working system available, you will then begin
        to explore the debugging software used for downloading,
        modifying, and testing code.  Finally, exercises are included
        to refresh your familiarity with MATLAB.
      </para>
    </section>
    
    <section id="sec1">
      <name>Lab Equipment</name>
      <para id="p1">This exercise assumes you have access to a laboratory station
        equipped with a Texas Instruments TMS320C5510A-200 digital signal
        processor chip mounted on a Spectrum Digital TMS320VC5510 
        evaluation board. The DUAL3006, a daughtercard produced by Educational DSP, is mounted on the external peripheral interface of the board to enable four-input/four-output capability. The evaluation module should be
        connected to a PC running Windows and will be controlled using
        the PC application Code Composer Studio, a debugger and
        development environment. We will be using a 48kHz sample rate.  The DSP board can
        also communicate with user code or a terminal emulator running
        on the PC via a USB interface.
      </para>
      <para id="p2">
        In addition to the DSP board and PC, each laboratory station
        should also be equipped with a function generator to provide
        test signals and an oscilloscope to display the processed
        waveforms.
      </para>
      
      <section id="sec1a">
        <name>Step 1: Connect cables</name>
        <para id="p3">Use the provided BNC cables to connect the output of the
          function generator to input channel 1 on the DSP evaluation
          board.  Connect output channels 1 and 2 of the board to
          channels 1 and 2 of the oscilloscope.  The input and output
          connections for the DSP board are shown in <cnxn target="fig1"/>. The figure may not be up to date, so ask a TA if you need help.
        </para>
        <figure id="fig1">
          <name>Example Hardware Setup</name>
          <media type="image/png" src="setup.png"/>
        </figure>
        <para id="p4">
          Note that with this configuration, you will have only one
          signal going into the DSP board and two signals coming out.
          The output on channel 1 is the filtered input signal, and
          the output on channel 2 is the unfiltered input signal.
          This allows you to view the raw input and filtered output
          simultaneously on the oscilloscope.  Turn on the function
          generator and the oscilloscope.
        </para>
      </section>
      
      <section id="sec1b">
        <name>Step 2: Log in</name>
        <para id="p5">
          Use the network ID and password provided to log into the PC
          at your laboratory station.
        </para>
        
        <para id="p5a">When you log in, two shared networked drives should be
          mapped to the computer: the <code>W:</code> drive, which
          contains your own private network work directory, and the
          <code>V:</code> drive, where the necessary files for ECE 420
          are stored.  Be sure to save any files that you use for the
          course to the <code>W:</code> drive.  Temporary files may be
          stored in the <code>C:\TEMP</code> directory; however, since
          files stored on the <code>C:</code> drive are accessible to
          any user, are local to each computer, and may be erased at
          any time, do not store course files on the <code>C:</code>
          drive.  On the <code>V:</code> drive, the directory
          <code>v:\ece420\55x\</code> contains the files
          necessary to assemble and test code on the TI DSP evaluation
          boards.
        </para>
  
	<para id="p5b">Although you may want to work exclusively in one or the
	  other of lab-partners' network account, you should be
          sure that both partners have copies of the lab assignment
          assembly code. <note type="warning">Not having the assembly
          code during a quiz because "it's on my partner's account" is
          <emphasis>NOT</emphasis> a valid excuse!</note> For copying
          between partners' directory on <code>W:</code> or for
          working outside the lab, SFTP access to your files is
          available at <code>sftp://ece-serv-05.ece.uiuc.edu</code>.
        </para>
      </section>
    </section>
  
    <section id="sec2">
    <name>The Development Environment</name>
    <para id="p8">The evaluation board is controlled by the PC through the JTAG
	interface using the application Code Composer
	Studio.  This development environment allows the user to
	download, run, and debug code assembled on the PC.  Work
	through the steps below to familiarize yourself with the
	debugging environment and real-time system using the provided
	FIR filter code (Steps 3, 4 and 5), then verify the filter's
	frequency response with the subsequent MATLAB exercises (Steps
	6 and 7).
      </para>

      <section id="sec2a">
        <name>Step 3: Assemble filter code</name>
        <para id="p9">
          Before you can execute and test the provided FIR filter
          code, you must assemble the source file.  First, bring up a
          <code>DOS</code> prompt window and create a new directory to
          hold the files, and then copy them into your directory:
        </para>
        
        <list id="codeb" type="bulleted"><item><code>w:</code></item>
          <item><code>mkdir ece420</code></item>
          <item><code>cd ece420</code></item>
          <item><code>copy v:\ece420\55x\filter .</code></item>
         </list>

	<para id="element-676">Next, open up Code Composer Studio 3.1 . A new window should pop out. From the 'Project' menu, select 'Open...' and choose the <code>filter.pjt</code> file in the directory you just copied. 
 </para><para id="element-882">Assemble the code by selecting <code>Rebuild All</code> under the <code>Project</code> menu. In a successful build, there will be 0 errors and maybe a few warnings and remarks. The output file will be placed in a Debug folder within the project's directory. In this case, the executable binary code will be in <code>filter.out</code>.</para>
      </section>
      
      <section id="sec2b">
	<name>Step 4: Verify filter execution</name>
	<para id="p11">Before loading your code, you must connect to the DSP board.
          To connect the board, select the
	  <code>Connect</code> option from the <code>Debug</code> menu
	  in Code Composer. 
	</para>
	<para id="p12">Select the <code>
	  Registers</code> option from the <code>View</code> menu,
	  then select <code>CPU Register</code>.  This will open a
	  sub-window at the bottom of the Code Composer application
	  window that displays several of the DSP registers. This display will be useful when debugging your code in the later labs.  </para>
	<para id="p13">Now, load your assembled filter file onto the DSP by
	  selecting <code>Load Program</code> from the
	  <code>File</code> menu.  Finally, 
	  execute the code by selecting <code>Run</code> from the
	  <code>Debug</code> menu. On subsequent runs, selecting <code>Reload Program</code> can be used to reload the same output file without requiring user selection of the output file.

	</para>
	<para id="p14">The program you are running accepts input from input channel
	  1 and sends output waveforms to output channels 1 and 2 (the
	  filtered signal and raw input, respectively).  Note that the
	  "raw input" on output channel 2 may differ from the actual
	  input on input channel 1, because of distortions introduced
	  in converting the analog input to a digital signal and then
	  back to an analog signal.  The A/D and D/A converters on the
	  six-channel surround board operate at a sample rate of 48
	  kHz and have an <term>anti-aliasing filter</term> and an
	  <term>anti-imaging filter</term>, respectively, that in the
	  ideal case would eliminate frequency content above 24
	  kHz.  The converters on the board are also
	  <term>AC coupled</term> and cannot pass DC signals.  On the
	  basis of this information, what differences do you expect to
	  see between the signals at input channel 1 and at output
	  channel 2?
	</para>
	<para id="p15">Set the amplitude on the function generator to 1.0 V
	  peak-to-peak and the pulse shape to sinusoidal. Adjust the function generator so that it expects a high impedance load. The sequence of button presses to accomplish this on the function generator in the lab is <code>Shift -&gt; Enter -&gt; Right -&gt; Right -&gt; Right -&gt; Down -&gt; Down -&gt; Right -&gt; Enter</code>.  Observe the
	  frequency response of the filter by sweeping the input
	  signal through the relevant frequency range. Make sure the oscilloscope is set to 1M impedance. This can be accomplished by pressing channel 1 or 2 and then selecting 1M Ohm from the Imped menu. What is the
	  relevant frequency range for a DSP system with a sample rate
	  of 48 kHz?
	</para>
	
	<para id="p17">
	  Based on the frequency response you observe, characterize
	  the filter in terms of its type (e.g., low-pass, high-pass,
	  band-pass) and its -6 dB (half-amplitude) cutoff frequency
	  (or frequencies).  It may help to set the trigger on channel
	  2 of the oscilloscope since the signal on channel 1 may go
	  to zero.
	</para>
      </section>

      <section id="sec2c">
	<name>Step 5: Re-assemble and re-run with new filter</name>
        <para id="p18">
          Once you have determined the type of filter the DSP is
          implementing, you are ready to repeat the process with a
          different filter by including different coefficients during
          the assembly process.
          
          Copy a second set of FIR coefficients over to your working
          directory with the following:
        </para>

        <list id="codea" type="bulleted"><item><code>copy coef.asm coef1.asm</code></item>
          <item><code>copy v:\ece420\55x\filter\coef2.asm coef.asm</code></item>
        </list>
        
	<para id="p19">You can now repeat the assembly and testing process with the
	  new filter by repeating the steps required to assemble and
	  execute the code discussed in <cnxn target="sec2b">Step
	  4</cnxn>.
	</para>
	<para id="p20a">
	  Just as you did in <cnxn target="sec2b">Step 4</cnxn>,
	  determine the type of filter you are running and the
	  filter's -6 dB point by testing the system at various
	  frequencies.
	</para>
      </section>
      
      <section id="sec2d">
	<name>Step 6: Check filter response in MATLAB</name>
	<para id="p20b">
	  In this step, you will use MATLAB to verify the frequency
	  response of your filter by copying the coefficients from the
	  DSP to MATLAB and displaying the magnitude of the frequency
	  response using the MATLAB command <code>freqz</code>.
	</para>
	<para id="p21">The FIR filter coefficients included in the file
	  <code>coef.asm</code> are stored in memory on the DSP.
	  The location in memory can be found by typing the name of the variable. In this case, the coefficients are stored at <code>coef1</code>. View the filtercode.asm to make sure you understand why.
	  To view the filter coefficients as signed integers, select
	  the <code>Memory</code> option from the
	  <code>View</code> menu to bring up a <code>Memory Window
	  Options</code> box.  In the appropriate fields, set the
	  starting address to <code>coef1</code> and the format to
	  <code>16-Bit Signed Int</code>.  Click "OK" to open a memory
	  window displaying the contents of the specified memory
	  locations.  The numbers along the left-hand side indicate
	  the memory locations.
	</para>
	<para id="p22">In this example, the filter coefficients are placed in
	  memory in decreasing order; that is, the last coefficient,
	  <m:math>
	    <m:apply>
	      <m:ci type="fn" class="discrete">h</m:ci>
	      <m:cn>7</m:cn>
	    </m:apply>
	  </m:math>, is at location <code>coef1</code> and the first
	  coefficient,
	  <m:math>
	    <m:apply>
	      <m:ci type="fn" class="discrete">h</m:ci>
	      <m:cn>0</m:cn>
	    </m:apply>
	  </m:math>, is stored at <code>coef1+7</code>.
	</para>
	<para id="p23">
	  Now that you can find the coefficients in memory, you are
	  ready to use the MATLAB command <code>freqz</code> to view
	  the filter's response.  You must create a vector in MATLAB
	  with the filter coefficients to use the <code>freqz</code>
	  command.  For example, if you want to view the response of
	  the three-tap filter with coefficients -10, 20, -10 you can
	  use the following commands in MATLAB:
	  <list id="link2" type="bulleted">
	    <item><code>h = [-10, 20, -10];</code></item>
	    <item><code>plot(abs(freqz(h)))</code></item>
	  </list>
	</para>
	<para id="p24">Note that you will have to enter eight values, the contents
	  of memory locations <code>coef1</code> through
	  <code>coef1+7</code>, into the coefficient vector,
	  <code>h</code>.
	</para>
	<para id="p25">
	  Does the MATLAB response compare with your experimental
	  results?  What might account for any differences?
	</para>
      </section>
      
      <section id="sec2e">
	<name>Step 7: Create new filter in MATLAB and verify</name>
	<para id="p26">
	  MATLAB scripts will be made available to you to aid in code
	  development.  For example, one of these scripts allows you
	  to save filter coefficients created in MATLAB in a form that
	  can be included as part of the assembly process without
	  having to type them in by hand (a very useful tool for long
	  filters).  These scripts may already be installed on your
	  computer; otherwise, download the files from the links as
	  they are introduced.
	</para>
	<para id="p27">First, have MATLAB generate a "random" eight-tap filter by
	  typing <code>h = gen_filt;</code> at a MATLAB prompt.  Then
	  save this vector of filter coefficients by typing
	  <code>save_coef('coef.asm',flipud(h));</code> Make sure you
	  save the file in your own directory.  (The scripts that
	  perform these functions are available as <link src="gen_filt.m">gen_filt.m</link> and <link src="save_coef.m">save_coef.m</link> . They are also available at <code>v:/ece420/55x/m_files</code>)
	</para>
	<para id="p28">The <code>save_coef</code> MATLAB script will save the
	  coefficients of the vector <code>h</code> into the named
	  file, which in this case is <code>coef.asm</code>.  Note
	  that the coefficient vector is "flipped" prior to being
	  saved; this is to make the coefficients in
	  <m:math>
	    <m:ci>h</m:ci>
	  </m:math> fill DSP memory-locations
	  <code>coef1</code> through
	  <code>coef1+7</code> in reverse order, as before.
	</para>
	<para id="p29">
	  You may now re-assemble and re-run your new filter code as
	  you did in <cnxn target="sec2c">Step 5</cnxn>.
	</para>
	<para id="p30">Notice when you load your new filter that the contents of
	  memory locations <code>coef1</code> through
	  <code>coef1+7</code> update accordingly.
	</para>
      </section>
      <section id="sec2f">
	<name>Step 8: Modify filter coefficients in memory</name>
	<para id="p31">
	  Not only can you view the contents of memory on the DSP
	  using the debugger, you can change the contents at any
	  memory location simply by double-clicking on the location
	  and making the desired change in the pop-up window.
	</para>
	<para id="p32a">Change the contents of memory locations <code>coef1</code>
	  through <code>coef1+7</code> such that the coefficients
	  implement a scale and delay filter with impulse response:
	  <equation id="eqn1">
	    <m:math>
	      <m:apply>
		<m:eq/>
		<m:apply>
		  <m:ci type="fn" class="discrete">h</m:ci>
		  <m:ci>n</m:ci>
		</m:apply>
		<m:apply>
		  <m:times/>
		  <m:cn>8192</m:cn>
		  <m:apply>
		    <m:ci type="fn" class="discrete">δ</m:ci>
		    <m:apply>
		      <m:minus/>
		      <m:ci>n</m:ci>
		      <m:cn>4</m:cn>
		    </m:apply>
		  </m:apply>
		</m:apply>
	      </m:apply>
	    </m:math>
	  </equation> Note that the DSP interprets the integer value
	  of 8192 as a fractional number by dividing the integer by
	  32,768 (the largest integer possible in a 16-bit two's
	  complement register).  The result is an output that is
	  delayed by four samples and scaled by a factor of
	  <m:math>
	    <m:apply>
	      <m:divide/>
	      <m:cn>1</m:cn>
	      <m:cn>4</m:cn>
	    </m:apply>
	  </m:math>.  More information on the DSP's interpretation of
	  numbers appears in <cnxn document="m10808">Two's Complement
	  and Fractional Arithmetic for 16-bit Processors</cnxn>.<note type="note">A clear and complete understanding of how the
	  DSP interprets numbers is absolutely necessary to
	  effectively write programs for the DSP.  Save yourself time
	  later by learning this material now!</note>
	</para>
	<para id="p32b">
	  After you have made the changes to all eight coefficients,
	  run your new filter and use the oscilloscope to measure the
	  delay between the raw (input) and filtered (delayed)
	  waveforms.
	</para>
	<para id="p33">
	  What happens to the output if you change either the scaling
	  factor or the delay value?  How many seconds long is a
	  six-sample delay?
	</para>
      </section>

      <section id="sec2g">
	<name>Step 9: Test-vector simulation</name>
	<para id="p34">
	  As a final exercise, you will find the output of the DSP for
	  an input specified by a test vector.  Then you will compare
	  that output with the output of a MATLAB simulation of the
	  same filter processing the same input; if the DSP
	  implementation is correct, the two outputs should be almost
	  identical.  To do this, you will generate a waveform in
	  MATLAB and save it as a test vector. You will then run your
	  DSP filter using the test vector as input and import the
	  results back into MATLAB for comparison with a MATLAB
	  simulation of the filter.
	</para>
	<para id="p36">
	  The first step in using test vectors is to generate an
	  appropriate input signal.  One way to do this is to use the
	  MATLAB function to generate a sinusoid that sweeps across a
	  range of frequencies.  The MATLAB function
	  <code>save_test_vector</code> (available as <link src="save_test_vector.m">save_test_vector.m</link> can then
	  save the sinusoidal sweep to a file you will later include
	  in the DSP code.
	</para>
	<para id="p36b">Generate a sinusoidal sweep using <link src="sweep.m">sweep.m</link> and save it to a DSP test-vector
	  file using the following MATLAB commands: 
	</para>
	<code type="block">
	  <![CDATA[
	  >> t=sweep(0.1*pi,0.9*pi,0.25,500);    % Generate a frequency sweep
	  >> save_test_vector('testvect.asm',t); % Save the test vector
	  ]]>
	</code>
	<para id="p37">
	  Next, use the MATLAB <code>conv</code> command to generate a
	  simulated response by filtering the sweep with the filter
	  <m:math>
	    <m:ci>h</m:ci>
	  </m:math> you generated using <code>gen_filt</code>
	  above. Note that this operation will yield a vector of
	  length 507 (which is
	  <m:math>
	    <m:apply>
	      <m:minus/>
	      <m:apply>
		<m:plus/>
		<m:ci>n</m:ci>
		<m:ci>m</m:ci>
	      </m:apply>
	      <m:cn>1</m:cn>
	    </m:apply>
	  </m:math>, where 
	  <m:math>
	    <m:ci>n</m:ci>
	  </m:math> is the length of the filter and 
	  <m:math>
	    <m:ci>m</m:ci> 
	  </m:math> is the length of the input).  You should keep only
	  the first 500 elements of the resulting vector.
	</para>
	<code type="block">
	  <![CDATA[
	  >> out=conv(h,t)                  % Filter t with FIR filter h
	  >> out=out(1:500)                 % Keep first 500 elements of out
	  ]]>
	</code>
	<para id="p38">The <code>main.c</code> file needs to be told to take input from memory on the DSP. Fortunately, the changes have already been made in the files.   The test vector is stored
	  in a block of memory on the DSP just like other variables.
 The memory block that holds the test
	  vector is large enough to hold a vector up to 4,000 elements
	  long. The test vector stores data for all four channels of input
	  and from four channels of output.
	</para>
	<para id="p40">To run your program with test vectors, you will need to
	  modify <code>main.c</code> as well as <code>filtercode.asm</code>.  Both are simply text files and can be edited using the editor of
	  your preference, including WordPad, Emacs, and VI.  Within <code>main.c</code>, uncomment the <code>#define FILE_INPUT</code> line so that your program will rewrite input from the A/D with the test vector you specified and then save the output into a block of memory. </para>
	
	
	
	<para id="element-799">In <code>filtercode.asm</code>, add the following at the end of the <code>.data</code> section. Depending on where you saved <code>testvect.asm</code>, the reference may have to be a direct reference. If you saved it in the folder of the source code we are working with, then the following should work.</para><code type="block"><![CDATA[
	  .copy    "testvect.asm"]]>
	</code><para id="para40c">
	  Note that, as usual, the whitespace in front of the
	  <code>.copy</code> directive is required.
	</para>
	<para id="para40d">These changes will copy in the test vector.  After modifying your code,
	  assemble it, then load and run the file using Code Composer
	  as before.  After a few seconds, halt the DSP (using the
	  <code>Halt</code> command under the <code>Debug</code> menu). How many seconds do you think it should take?</para>
	<para id="p41">Next, save the test output file and load it back into
	  MATLAB.  This can be done by first saving 2000 memory
	  elements (4 channels times 500 samples) starting with
	  location <code>tv_outbuf</code> in data memory.  Do this by
	  choosing <code>File-&gt;Data-&gt;Save...</code> in Code Composer
	  Studio, then entering the filename <code>output.dat</code>
	  and pressing <code>Enter</code>.  Next, enter
	  <code>tv_outbuf</code> in the Address field of the dialog box
	  that pops up, <code>2000</code> in the Length field, and
	  choose <code>Data</code> from the drop-down menu next to
	  <code>Page</code>. Always make sure that you use the correct
	  length (four times the length of the test vector) when you
	  save your results.
	</para>
	<para id="p42">
	  Last, use the <code>read_vector</code> (available as <link src="read_vector.m">read_vector.m</link>) function to read
	  the saved result into MATLAB. Do this using the following
	  MATLAB command:
	</para>
	<code type="block"><![CDATA[
	  >> [ch1, ch2, ch3, ch4] = read_vector('output.dat');
	  ]]>
	</code>
	<para id="p43">
	  Now, the MATLAB vector <code>ch1</code> corresponds to the
	  filtered version of the test signal you generated. The
	  MATLAB vector <code>ch2</code> should be nearly identical to
	  the test vector you generated, as it was passed from the DSP
	  system's input to its output unchanged.  <note type="Note">Because of quantization error introduced in
	  saving the test vector for the 16-bit memory of the DSP, the
	  vector <code>ch2</code> will not be identical to the MATLAB
	  generated test vector.  </note>
	</para>
	<para id="p44">
	  After loading the output of the filter into MATLAB, compare
	  the expected output (calculated as <code>out</code> above)
	  and the output of the filter (in <code>ch1</code> from
	  above). This can be done graphically by simply plotting the
	  two curves on the same axes; for example:
	</para>
	<code type="block">
	  <![CDATA[
	  >> plot(out,'r'); % Plot the expected curve in red 
	  >> hold on        % Plot the next plot on top of this one 
	  >> plot(ch1,'g'); % Plot the expected curve in green 
	  >> hold off 
	  ]]>
	</code>
	<para id="p47">
	  You should also ensure that the difference between the two
	  outputs is near zero. This can be done by plotting the
	  difference between the two vectors:
	</para>
	<code type="block">
	  <![CDATA[
	  >> plot(out(1:length(ch1))-ch1); % Plot error signal 
	  ]]>
	</code>
	<para id="p48">
	  You will observe that the two sequences are not exactly the
	  same; this is due to the fact that the DSP computes its
	  response to 16 bits precision, while MATLAB uses 64-bit
	  floating point numbers for its arithmetic.  Blocks of output samples may also be missing from the test vector output due to a bug in the test vector core.  Nonetheless, the test vector environment allows one to run repeatable experiments using the same known test input for debugging.
	</para>
      </section>
    </section>
  </content>
</document>
