add bpf to rds2 carrier and lpf

This commit is contained in:
2025-03-25 17:01:25 +01:00
parent 73f97bb6d3
commit 7164421e16
4 changed files with 59 additions and 44 deletions
+5 -1
View File
@@ -4,4 +4,8 @@
#endif
#ifndef M_2PI
#define M_2PI (M_PI * 2.0)
#endif
#endif
inline float sincf(float x) {
return (x == 0.0f) ? 1.0f : sinf(M_PI * x) / (M_PI * x);
}