1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 09:25:07 -04:00

M17 mod/demod: moved m17 specific code to a new modems library

This commit is contained in:
f4exb
2022-06-10 19:17:56 +02:00
parent 6a22606beb
commit dd2233f763
39 changed files with 442 additions and 655 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "Correlator.h"
namespace mobilinkd {
// IIR with Nyquist of 1/240.
const std::array<float,3> Correlator::b = {4.24433681e-05, 8.48867363e-05, 4.24433681e-05};
const std::array<float,3> Correlator::a = {1.0, -1.98148851, 0.98165828};
} // namespace mobilinkd