/** * * \section COPYRIGHT * * Copyright 2013-2015 The srsLTE Developers. See the * COPYRIGHT file at the top-level directory of this distribution. * * \section LICENSE * * This file is part of the srsLTE library. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * srsLTE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * A copy of the GNU Affero General Public License can be found in * the LICENSE file in the top-level directory of this distribution * and at http://www.gnu.org/licenses/. * */ #include #include #include #include #include #include #include #include #include "srslte/srslte.h" #define MAX_MSE 0.1 float freq = 0; int num_samples = 1000; void usage(char *prog) { printf("Usage: %s -f freq -n num_samples\n", prog); } void parse_args(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "nf")) != -1) { switch (opt) { case 'n': num_samples = atoi(argv[optind]); break; case 'f': freq = atof(argv[optind]); break; default: usage(argv[0]); exit(-1); } } } int main(int argc, char **argv) { int i; cf_t *input, *output; srslte_cfo_t cfocorr; float mse; if (argc < 5) { usage(argv[0]); exit(-1); } parse_args(argc, argv); input = malloc(sizeof(cf_t) * num_samples); if (!input) { perror("malloc"); exit(-1); } output = malloc(sizeof(cf_t) * num_samples); if (!output) { perror("malloc"); exit(-1); } for (i=0;i MAX_MSE) { printf("MSE too large\n"); exit(-1); } else { printf("Ok\n"); exit(0); } }