mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 22:35:41 +00:00
improved some names
This commit is contained in:
parent
b2c0e56c4f
commit
bf382cfe77
2 changed files with 6 additions and 6 deletions
|
|
@ -44,7 +44,7 @@ struct SchmidlCox
|
|||
DSP::SMA4<cmplx, value, symbol_len, false> cor;
|
||||
DSP::SMA4<value, value, 2*symbol_len, false> pwr;
|
||||
DSP::SMA4<value, value, match_len, false> match;
|
||||
DSP::Delay<value, match_del> delay;
|
||||
DSP::Delay<value, match_del> align;
|
||||
DSP::SchmittTrigger<value> threshold;
|
||||
DSP::FallingEdgeTrigger falling;
|
||||
cmplx tmp0[symbol_len], tmp1[symbol_len];
|
||||
|
|
@ -87,7 +87,7 @@ public:
|
|||
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));
|
||||
value phase = align(arg(P));
|
||||
|
||||
bool collect = threshold(timing);
|
||||
bool process = falling(collect);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue