freq offset needs to be divisible by 50.

use disorders/cfo if you need finer control
This commit is contained in:
Ahmet Inan 2021-09-03 20:50:33 +02:00
commit a3a56bc830

View file

@ -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;