BigBen.tar Project

Date:
02/02/2011
Categories:
3rdparty,
obsolete,
project
Link:
Authors:

Description



BIG BEN CHIME SYNTHESIZER


INTRODUCTION

This little audio application tries to imitate the chimes of Big Ben, London.


BASIC ARCHITECTURE

The chime synthesizer consists of the following modules:

  • Top-level module

    This module instantiates the other modules in the usual way. It has a single input (12 MHz FPGA clock) and a single output (a pulse-density modulated signal) which is fed into an RC low-pass filter. This in turn is connected to an audio amplifier.

  • 100 MHz clock and reset generator

    I use one of the DCMs to generate the 100 Mhz system clock from the 12 MHz clock input. System reset is also generated here.

  • Melody sequencer

    A prescaler divides the clock frequency. Its output drives an FSM, which sequences through the notes. A first map translates the state of the FSM to a note number, a second one maps that to the sound parameters for the synthesizer.

  • FM synthesizer

    I built a sloppy imitation of a 2-operator FM (frequency modulation) synthesizer, because such a device can produce bell sounds easily. I started from a CSOUND description which I found here ( http://www.adp-gmbh.ch/csound/fm/bell.html ), translated that to a C program that computes the sound with floating point operations, and finally simulated real hardware (only integer operations, lookup tables with interpolation for sine and exp tables, etc). You can find all the intermediate representations of the synthesizer in the subdirectory tools.

  • Delta-sigma modulator

    The XuLA board does not have a DA-converter. But it is very well capable of producing a pulse-density modulated signal, computed by a delta-sigma modulator with minimal effort. Due to the high pulse rate of 100 MHz, a very simple first-order low-pass filter can do the necessary integration of the pulses (see below).

  • RC lowpass filter (external to the board)

    In principle, a simple RC combination is sufficient. In my case, however, I had to attenuate the signal somewhat, because my audio amplifier was too sensitive. So I added another resistor parallel to the capacitor. The attenuation is of course R2/(R1+R2), but note that the time constant changes from RC to C*R1*R2/(R1+R2). I used R1 = 12k, R2 = 3.3k, C = 4.7nF, where R1 is connecting the FPGA pin to the audio output, and from that, R2 is mounted parallel to C, both connected to GND.


SOURCE FILES

You can download the source files for this example design from the XESS website at http://www.xess.com/projects/BigBen.tar.gz .


DISCLAIMER

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


AUTHOR

Hellwig Geisse - Hellwig.Geisse@mni.fh-giessen.de


COPYRIGHT AND LICENSE

Copyright (c) 2011 Hellwig Geisse All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.


HISTORY

02/12/2011 - Initial release.