mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
lowered lowest allowed volume by an order of magnitude
This commit is contained in:
parent
859b64ef0e
commit
31a28e3de7
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ public:
|
|||
{
|
||||
cmplx P = cor(samples[search_pos+symbol_len] * conj(samples[search_pos+2*symbol_len]));
|
||||
value R = value(0.5) * pwr(norm(samples[search_pos+2*symbol_len]));
|
||||
value min_R = 0.0001 * symbol_len;
|
||||
value min_R = 0.00001 * symbol_len;
|
||||
R = std::max(R, min_R);
|
||||
value timing = match(norm(P) / (R * R));
|
||||
value phase = delay(arg(P));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue