-
Notifications
You must be signed in to change notification settings - Fork 11
/
filters.cpp
81 lines (73 loc) · 1.67 KB
/
filters.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "filters.h"
extern const short fir18[];
extern const short fir26[];
extern const short fir36[];
extern const short fir44[];
extern const short fir65[];
extern const short fir80[];
const short fir18[BPF_COEFFS] = {
#include "fir_18.h"
};
const short fir26[BPF_COEFFS] = {
#include "fir_26.h"
};
const short fir36[BPF_COEFFS] = {
#include "fir_36.h"
};
const short fir44[BPF_COEFFS] = {
#include "fir_44.h"
};
const short fir65[BPF_COEFFS] = {
#include "fir_65.h"
};
const short fir80[BPF_COEFFS] = {
#include "fir_80.h"
};
const short H_45_1_8kHz[HILBERT_COEFFS] = {
#include "H_45_1_8kHz.h"
};
const short H_m45_1_8kHz[HILBERT_COEFFS] = {
#include "H_m45_1_8kHz.h"
};
const short H_45_2_6kHz[HILBERT_COEFFS] = {
#include "H_45_2_6kHz.h"
};
const short H_m45_2_6kHz[HILBERT_COEFFS] = {
#include "H_m45_2_6kHz.h"
};
const short H_45_3_6kHz[HILBERT_COEFFS] = {
#include "H_45_3_6kHz.h"
};
const short H_m45_3_6kHz[HILBERT_COEFFS] = {
#include "H_m45_3_6kHz.h"
};
const short H_45_4_4kHz[HILBERT_COEFFS] = {
#include "H_45_4_4kHz.h"
};
const short H_m45_4_4kHz[HILBERT_COEFFS] = {
#include "H_m45_4_4kHz.h"
};
const short H_45_6_5kHz[HILBERT_COEFFS] = {
#include "H_45_6_5kHz.h"
};
const short H_m45_6_5kHz[HILBERT_COEFFS] = {
#include "H_m45_6_5kHz.h"
};
const short H_45_8kHz[HILBERT_COEFFS] = {
#include "H_45_8kHz.h"
};
const short H_m45_8kHz[HILBERT_COEFFS] = {
#include "H_m45_8kHz.h"
};
const short H_45_11kHz[HILBERT_COEFFS] = {
#include "H_45_11kHz.h"
};
const short H_m45_11kHz[HILBERT_COEFFS] = {
#include "H_m45_11kHz.h"
};
const short H_0_8kHz[HILBERT_COEFFS] = {
#include "H_0_8kHz.h"
};
const short H_90_8kHz[HILBERT_COEFFS] = {
#include "H_90_8kHz.h"
};