Skip to content Skip to navigation

Connexions

You are here: Home » Content » Multirate Filtering: Implementation on TI TMS320C54x

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

      What are tags? tag icon

      Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

    • External bookmarks
  • E-mail the author
  • Rate this module (How does the rating system work?)

    Rating system

    Ratings

    Ratings allow you to judge the quality of modules. If other users have ranked the module then its average rating is displayed below. Ratings are calculated on a scale from one star (Poor) to five stars (Excellent).

    How to rate a module

    Hover over the star that corresponds to the rating you wish to assign. Click on the star to add your rating. Your rating should be based on the quality of the content. You must have an account and be logged in to rate content.

    (0 ratings)

Recently Viewed

This feature requires Javascript to be enabled.

Multirate Filtering: Implementation on TI TMS320C54x

Module by: Robert Morrison Based on: Multirate Filtering: Implementation on TI TMS320C54x by Douglas L. Jones, Swaroop Appadwedula, Matthew Berry, Mark Haun, Jake Janovetz, Michael Kramer, Dima Moussa, Daniel Sachs, Brian Wade

Summary: You will implement a multirate system that includes three fininte impulse response filters. The sample-rate compression and expansion factors can be controlled in real time using a MATLAB graphical user interface.

Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.

Implementation

Before implementing the entire system shown in Multirate Processing: Introduction, we recommend you design a system that consists of a cascade of filters FIR 1 and FIR 2 without the sample-rate compressor or expander. After verifying that the response of your two-filter system is correct, proceed to implement the complete multirate system and verify its total response. At first, use fixed compression and expansion factors of D=U=4 D U 4 . After you have verified that the multirate system works at a fixed rate, you should modify your code so that the rate can be changed easily. Later, you have the option of controlling this factor in real-time using a MATLAB interface. Regardless of whether you choose to use the MATLAB interface, you must be able to quickly change the compression and expansion factors when you demo your code.

Compressed-rate processing

In order to perform the processing at the lower sample rate, implement a counter in your code. Your counter will determine when the compressed-rate processing is to occur, and it can also be used to determine when to insert zeros into FIR 3 to implement the sample-rate expander.

Some instructions that may be useful for implementing your multirate structure are the addm (add to memory) and bc (branch conditional) instructions. You may also find the banz (branch on auxiliary register not zero) and the b (branch) instruction useful.

Real-time rate change and MATLAB interface (Optional)

A simple graphical user interface (GUI) is available (as mrategui.m, which requires ser_snd.m) that sends a number between 1 and 10 to the DSP via the serial port. This can be used to change the compression and expansion factor in real time.

Run the GUI by typing mrategui at the MATLAB prompt. A figure should automatically open up with a slider on it; adjusting the slider changes the compression and expansion factor sent to the DSP.

The assembly code for interacting with the serial port, provided in the handout Core File: Serial Port Communication Between MATLAB and TI TMS320C54x, stores the last number that the DSP has received from the computer in the memory location labeled hold. Therefore, unless you have changed the serial portion of the given code, you can find the last compression and expansion factor set by the GUI in this location. You need to modify your code so that each time a new number is received on the serial port, the compression and expansion factor is changed. If a "1" is received on the serial port, the entire system should run at the full rate; if a "10" is received, the system should discard nine samples between each sample processed at the lower rate.

Note that the READSER and WRITSER macros, which are used to read data from and send data to the serial port, overwrite AR0, AR1, AR2, and AR3 registers, as well as BK and the condition flag TC. You must therefore ensure that these registers are not used by your code, or that you save and restore their values in memory before you call the READSER and WRITSER macros. This can be done using the mvdm and mvmd instructions. The serial macros set up the AR1 and AR3 each time they are called, so there is no need to change these registers before the macros are called.

More detail about the READSER and WRITSER macros can be found in Core File: Serial Port Communication Between MATLAB and TI TMS320C54x.

Comments, questions, feedback, criticisms?

Send feedback