bpsk-demod/src/bpsk/lpf_coefficients.h

25 lines
628 B
C

// Filter defined in `make_coefficients.py` with the following parameters:
// taps: 16
// rate: 62500
// tone: 20840
// bandwidth: 100
#define LPF_STAGES 16
static float lpf_coefficients[LPF_STAGES] = {
0.009772255068427597f,
0.014633627754595912f,
0.028376388957030364f,
0.048628398957956356f,
0.07188949768153266f,
0.0941372212972738f,
0.11152317756642983f,
0.12103943271675341f,
0.12103943271675341f,
0.11152317756642983f,
0.09413722129727382f,
0.07188949768153269f,
0.048628398957956356f,
0.028376388957030384f,
0.01463362775459592f,
0.009772255068427597f,
};