/** * * \section COPYRIGHT * * Copyright 2013-2014 The libLTE Developers. See the * COPYRIGHT file at the top-level directory of this distribution. * * \section LICENSE * * This file is part of the libLTE library. * * libLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * libLTE 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 Lesser General Public License for more details. * * A copy of the GNU Lesser 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 "liblte/phy/phy.h" int nof_prb = -1; lte_cp_t cp = CPNORM; void usage(char *prog) { printf("Usage: %s\n", prog); printf("\t-n nof_prb [Default All]\n"); printf("\t-e extended cyclic prefix [Default Normal]\n"); } void parse_args(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "ne")) != -1) { switch (opt) { case 'n': nof_prb = atoi(argv[optind]); break; case 'e': cp = CPEXT; break; default: usage(argv[0]); exit(-1); } } } int main(int argc, char **argv) { lte_fft_t fft, ifft; cf_t *input, *outfft, *outifft; float mse; int n_prb, max_prb, n_re; int i; parse_args(argc, argv); if (nof_prb == -1) { n_prb = 6; max_prb = 100; } else { n_prb = nof_prb; max_prb = nof_prb; } while(n_prb <= max_prb) { n_re = CP_NSYMB(cp) * n_prb * RE_X_RB; printf("Running test for %d PRB, %d RE... ", n_prb, n_re);fflush(stdout); input = malloc(sizeof(cf_t) * n_re); if (!input) { perror("malloc"); exit(-1); } outfft = malloc(sizeof(cf_t) * SLOT_LEN_CPNORM(lte_symbol_sz(n_prb))); if (!outfft) { perror("malloc"); exit(-1); } outifft = malloc(sizeof(cf_t) * n_re); if (!outifft) { perror("malloc"); exit(-1); } if (lte_fft_init(&fft, cp, n_prb)) { fprintf(stderr, "Error initializing FFT\n"); exit(-1); } if (lte_ifft_init(&ifft, cp, n_prb)) { fprintf(stderr, "Error initializing iFFT\n"); exit(-1); } for (i=0;i= 0.07) { printf("MSE too large\n"); exit(-1); } lte_fft_free(&fft); lte_ifft_free(&ifft); free(input); free(outfft); free(outifft); n_prb++; } exit(0); }