[Company Logo Image]

Home Up Feedback Contents Search

Theory
Theory Electrical Mechanical Limitations Results Applications

 

[Under Construction]

 

Introduction:

This project was attempted on an Atmel Mega163 processor.  Several limitations needed to be considered in our design and algorithms.  Due to these limitations, we needed an appropriate code.

Fourier analysis and digital filtering were considered, but they fell out of the practical scope of the processor.  In addition, the signal amplitude was constantly varying (and normalization is computationally expensive),  and there was a tremendous amount of radiated and conducted noise (most likely due to all the other crazy projects in progress in the class), not to mention noise introduced by our ADC (analog to digital converter).  We needed an algorithm that could function under noisy condition, varying signal amplitude, and low computational requirements.  We used correlation with some additional detection algorithms. 

 

The formation of the algorithm:

Cross-correlation is nearly identical to time-domain convolution, except the signal being convolved is not folded about zero.  Or cross-correlation can be implemented as convolution if the correlation signal is folded about zero.  So if x(n) and y(n) are input signals, and rxy(n) is the cross-correlation of x and y,

rxy(n) = x(n) <cross-correlated with> y(n)

or 

rxy(n) = x(n) * y(-n), where * is the convolution operation.

 

Cross-correlation of the same signal is know as autocorrelation, or

rxx(n) = x(n) * x(-n), where * is the convolution operation.

 

In our design, in conjunction of the equations above, we used some identities such as rxy(l) = ryx(-l), where the index l is the (time) shift (or lag) parameter.  These techniques allowed us to reduce the amount of computation.  An algorithm to directly compute positive lag was used in our design.  Then we computed information from the results of the cross-correlation to determine if there was a signal match.  This combination of code is shown to work in the Results section.

 

REFERENCE:  Proakis, J., Manolakis, D. 1996.  Digital Signals Processing, Prentice Hall, NJ.

 

Implementation:

A audio capture circuit was created with amplification and filtering and found in the Electrical section.  Detection and control code was written.  The detection code is described above.  The control code allows for a user to store a signal by playing the signal while pressing a "store" button.  

Additional control code was written to determine the direction of the signal (this required another audio capture circuit).  The results are in the process of being tested.  Due to memory issues discussed in the Limitations section, we do not expect much accuracy without modifying our hardware configuration.

Some diagrams are listed on thee pages, others are excluded to keep this page comprehensible.

 

 

Code Request Form

Select the items that apply, and then let us know how to contact you.

Send equations
Send code (written in c)
Have an engineer contact me

Name
Title
Company
Address
E-mail
Phone

 

 

 

Home ] Up ]

Send mail to zag2@cornell.edu with questions or comments about this web site.
Last modified: May 01, 2002