/** * * \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 "liblte/phy/phy.h" char *input_file_name = NULL; char *matlab_file_name = NULL; lte_cell_t cell = { 6, // nof_prb 1, // nof_ports 0, // cell_id CPNORM // cyclic prefix }; int flen; uint8_t cfi = 2; uint16_t rnti = SIRNTI; int max_frames = 10; FILE *fmatlab = NULL; filesource_t fsrc; pdcch_t pdcch; pdsch_t pdsch; cf_t *input_buffer, *fft_buffer, *ce[MAX_PORTS]; regs_t regs; lte_fft_t fft; chest_t chest; dci_t dci_rx; void usage(char *prog) { printf("Usage: %s [vcfoe] -i input_file\n", prog); printf("\t-o output matlab file name [Default Disabled]\n"); printf("\t-c cell.id [Default %d]\n", cell.id); printf("\t-f cfi [Default %d]\n", cfi); printf("\t-r rnti [Default SI-RNTI]\n"); printf("\t-p cell.nof_ports [Default %d]\n", cell.nof_ports); printf("\t-n cell.nof_prb [Default %d]\n", cell.nof_prb); printf("\t-m max_frames [Default %d]\n", max_frames); printf("\t-e Set extended prefix [Default Normal]\n"); printf("\t-v [set verbose to debug, default none]\n"); } void parse_args(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "irovfcenmp")) != -1) { switch(opt) { case 'i': input_file_name = argv[optind]; break; case 'c': cell.id = atoi(argv[optind]); break; case 'r': rnti = strtoul(argv[optind], NULL, 0); break; case 'm': max_frames = strtoul(argv[optind], NULL, 0); break; case 'f': cfi = atoi(argv[optind]); break; case 'n': cell.nof_prb = atoi(argv[optind]); break; case 'p': cell.nof_ports = atoi(argv[optind]); break; case 'o': matlab_file_name = argv[optind]; break; case 'v': verbose++; break; case 'e': cell.cp = CPEXT; break; default: usage(argv[0]); exit(-1); } } if (!input_file_name) { usage(argv[0]); exit(-1); } } int base_init() { int i; if (filesource_init(&fsrc, input_file_name, COMPLEX_FLOAT_BIN)) { fprintf(stderr, "Error opening file %s\n", input_file_name); exit(-1); } if (matlab_file_name) { fmatlab = fopen(matlab_file_name, "w"); if (!fmatlab) { perror("fopen"); return -1; } } else { fmatlab = NULL; } flen = 2 * (SLOT_LEN(lte_symbol_sz(cell.nof_prb), cell.cp)); input_buffer = malloc(flen * sizeof(cf_t)); if (!input_buffer) { perror("malloc"); exit(-1); } fft_buffer = malloc(2 * CP_NSYMB(cell.cp) * cell.nof_prb * RE_X_RB * sizeof(cf_t)); if (!fft_buffer) { perror("malloc"); return -1; } for (i=0;i