mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
3.7 KiB
C
162 lines
3.7 KiB
C
11 years ago
|
/**
|
||
|
*
|
||
|
* \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 <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <strings.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
10 years ago
|
#include "srslte/phy/phy.h"
|
||
11 years ago
|
|
||
11 years ago
|
|
||
|
lte_cell_t cell = {
|
||
|
6, // nof_prb
|
||
|
1, // nof_ports
|
||
|
1000, // cell_id
|
||
10 years ago
|
CPNORM, // cyclic prefix
|
||
|
R_1, // PHICH resources
|
||
|
PHICH_NORM // PHICH length
|
||
11 years ago
|
};
|
||
11 years ago
|
|
||
|
void usage(char *prog) {
|
||
11 years ago
|
printf("Usage: %s [cpv]\n", prog);
|
||
11 years ago
|
printf("\t-c cell id [Default %d]\n", cell.id);
|
||
|
printf("\t-p nof_ports [Default %d]\n", cell.nof_ports);
|
||
|
printf("\t-n nof_prb [Default %d]\n", cell.nof_prb);
|
||
11 years ago
|
printf("\t-v [set verbose to debug, default none]\n");
|
||
11 years ago
|
}
|
||
|
|
||
|
void parse_args(int argc, char **argv) {
|
||
11 years ago
|
int opt;
|
||
|
while ((opt = getopt(argc, argv, "cpnv")) != -1) {
|
||
|
switch(opt) {
|
||
|
case 'p':
|
||
11 years ago
|
cell.nof_ports = atoi(argv[optind]);
|
||
11 years ago
|
break;
|
||
|
case 'n':
|
||
11 years ago
|
cell.nof_prb = atoi(argv[optind]);
|
||
11 years ago
|
break;
|
||
|
case 'c':
|
||
11 years ago
|
cell.id = atoi(argv[optind]);
|
||
11 years ago
|
break;
|
||
|
case 'v':
|
||
|
verbose++;
|
||
|
break;
|
||
|
default:
|
||
|
usage(argv[0]);
|
||
|
exit(-1);
|
||
|
}
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
11 years ago
|
pcfich_t pcfich;
|
||
|
regs_t regs;
|
||
|
int i, j;
|
||
11 years ago
|
cf_t *ce[MAX_PORTS];
|
||
11 years ago
|
int nof_re;
|
||
11 years ago
|
cf_t *slot_symbols[MAX_PORTS];
|
||
10 years ago
|
uint32_t cfi, cfi_rx, nsf;
|
||
11 years ago
|
int cid, max_cid;
|
||
10 years ago
|
float corr_res;
|
||
11 years ago
|
|
||
|
parse_args(argc,argv);
|
||
|
|
||
11 years ago
|
nof_re = CPNORM_NSYMB * cell.nof_prb * RE_X_RB;
|
||
11 years ago
|
|
||
|
/* init memory */
|
||
11 years ago
|
for (i=0;i<MAX_PORTS;i++) {
|
||
11 years ago
|
ce[i] = malloc(sizeof(cf_t) * nof_re);
|
||
|
if (!ce[i]) {
|
||
|
perror("malloc");
|
||
|
exit(-1);
|
||
|
}
|
||
|
for (j=0;j<nof_re;j++) {
|
||
|
ce[i][j] = 1;
|
||
|
}
|
||
|
slot_symbols[i] = malloc(sizeof(cf_t) * nof_re);
|
||
|
if (!slot_symbols[i]) {
|
||
|
perror("malloc");
|
||
|
exit(-1);
|
||
|
}
|
||
|
}
|
||
|
|
||
11 years ago
|
if (cell.id == 1000) {
|
||
11 years ago
|
cid = 0;
|
||
|
max_cid = 503;
|
||
|
} else {
|
||
11 years ago
|
cid = cell.id;
|
||
|
max_cid = cell.id;
|
||
11 years ago
|
}
|
||
10 years ago
|
|
||
11 years ago
|
while(cid <= max_cid) {
|
||
11 years ago
|
cell.id = cid;
|
||
11 years ago
|
|
||
|
printf("Testing CellID=%d...\n", cid);
|
||
|
|
||
10 years ago
|
if (regs_init(®s, cell)) {
|
||
11 years ago
|
fprintf(stderr, "Error initiating regs\n");
|
||
|
exit(-1);
|
||
|
}
|
||
|
|
||
11 years ago
|
if (pcfich_init(&pcfich, ®s, cell)) {
|
||
11 years ago
|
fprintf(stderr, "Error creating PBCH object\n");
|
||
|
exit(-1);
|
||
|
}
|
||
|
|
||
|
for (nsf=0;nsf<10;nsf++) {
|
||
|
for (cfi=1;cfi<4;cfi++) {
|
||
|
pcfich_encode(&pcfich, cfi, slot_symbols, nsf);
|
||
|
|
||
|
/* combine outputs */
|
||
11 years ago
|
for (i=1;i<cell.nof_ports;i++) {
|
||
11 years ago
|
for (j=0;j<nof_re;j++) {
|
||
|
slot_symbols[0][j] += slot_symbols[i][j];
|
||
|
}
|
||
|
}
|
||
10 years ago
|
if (pcfich_decode(&pcfich, slot_symbols[0], ce, 0, nsf, &cfi_rx, &corr_res)<0) {
|
||
11 years ago
|
exit(-1);
|
||
|
}
|
||
10 years ago
|
INFO("cfi_tx: %d, cfi_rx: %d, ns: %d, distance: %f\n",
|
||
|
cfi, cfi_rx, nsf, corr_res);
|
||
11 years ago
|
}
|
||
|
}
|
||
|
pcfich_free(&pcfich);
|
||
|
regs_free(®s);
|
||
|
cid++;
|
||
|
}
|
||
|
|
||
11 years ago
|
for (i=0;i<MAX_PORTS;i++) {
|
||
11 years ago
|
free(ce[i]);
|
||
|
free(slot_symbols[i]);
|
||
|
}
|
||
|
printf("OK\n");
|
||
|
exit(0);
|
||
11 years ago
|
}
|