mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
freq offset needs to be divisible by 50.
use disorders/cfo if you need finer control
This commit is contained in:
parent
3665d495b7
commit
a3a56bc830
1 changed files with 5 additions and 0 deletions
|
|
@ -329,6 +329,11 @@ int main(int argc, char **argv)
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (freq_off % 50) {
|
||||
std::cerr << "Frequency offset must be divisible by 50." << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
typedef float value;
|
||||
typedef DSP::Complex<value> cmplx;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue