From 448dbcc011b9420afa3d482166c0ecfd30df1209 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Sat, 5 Jul 2025 19:53:30 +0200 Subject: [PATCH] need to be more sensitive for BPSK to show its potential --- schmidl_cox.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schmidl_cox.hh b/schmidl_cox.hh index 16d07f1..429a6df 100644 --- a/schmidl_cox.hh +++ b/schmidl_cox.hh @@ -48,7 +48,7 @@ public: value cfo_rad = 0; value frac_cfo = 0; - SchmidlCox(const cmplx *sequence) : threshold(value(0.17 * match_len), value(0.19 * match_len)) { + SchmidlCox(const cmplx *sequence) : threshold(value(0.07 * match_len), value(0.09 * match_len)) { fwd(kern, sequence); for (int i = 0; i < symbol_len; ++i) kern[i] = conj(kern[i]) / value(symbol_len);