Skip to content

Instantly share code, notes, and snippets.

@kg4sgp
kg4sgp / gortzelfsk.c
Created July 3, 2013 05:55
a goertzel demodulator
// Goertzel Demodulator
//
// This program demodulates two tone FSK using the goertzel algorithm.
#include <stdio.h>
#include <math.h>
struct gConstants {
float f1norm;
float f2norm;