srsLTE/lte/phy/lib/phch/test/pbch_test.c

145 lines
3.3 KiB
C
Raw Normal View History

2014-03-14 18:04:21 -07:00
/**
*
* \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>
#include "liblte/phy/phy.h"
2014-03-14 18:04:21 -07:00
lte_cell_t cell = {
6, // nof_prb
1, // nof_ports
1, // cell_id
CPNORM // cyclic prefix
};
2014-03-14 18:04:21 -07:00
void usage(char *prog) {
2014-06-17 02:11:41 -07:00
printf("Usage: %s [cpv]\n", prog);
printf("\t-c cell id [Default %d]\n", cell.id);
printf("\t-p cell.nof_ports [Default %d]\n", cell.nof_ports);
printf("\t-n cell.nof_prb [Default %d]\n", cell.nof_prb);
2014-06-17 02:11:41 -07:00
printf("\t-v [set verbose to debug, default none]\n");
2014-03-14 18:04:21 -07:00
}
void parse_args(int argc, char **argv) {
2014-06-17 02:11:41 -07:00
int opt;
while ((opt = getopt(argc, argv, "cpnv")) != -1) {
switch(opt) {
case 'p':
cell.nof_ports = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'n':
cell.nof_prb = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'c':
cell.id = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'v':
verbose++;
break;
default:
usage(argv[0]);
exit(-1);
}
}
2014-03-14 18:04:21 -07:00
}
int main(int argc, char **argv) {
2014-06-17 02:11:41 -07:00
pbch_t pbch;
pbch_mib_t mib_tx, mib_rx;
int i, j;
cf_t *ce[MAX_PORTS];
2014-06-17 02:11:41 -07:00
int nof_re;
cf_t *slot1_symbols[MAX_PORTS];
2014-06-17 02:11:41 -07:00
parse_args(argc,argv);
nof_re = SLOT_LEN_RE(cell.nof_prb, CPNORM);
2014-06-17 02:11:41 -07:00
/* init memory */
for (i=0;i<cell.nof_ports;i++) {
2014-06-17 02:11:41 -07:00
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;
}
slot1_symbols[i] = malloc(sizeof(cf_t) * nof_re);
if (!slot1_symbols[i]) {
2014-06-17 02:11:41 -07:00
perror("malloc");
exit(-1);
}
}
if (pbch_init(&pbch, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error creating PBCH object\n");
exit(-1);
}
mib_tx.nof_ports = cell.nof_ports;
2014-06-17 02:11:41 -07:00
mib_tx.nof_prb = 50;
mib_tx.phich_length = PHICH_EXT;
mib_tx.phich_resources = R_1_6;
mib_tx.sfn = 124;
pbch_encode(&pbch, &mib_tx, slot1_symbols);
2014-06-17 02:11:41 -07:00
/* combine outputs */
for (i=1;i<cell.nof_ports;i++) {
2014-06-17 02:11:41 -07:00
for (j=0;j<nof_re;j++) {
slot1_symbols[0][j] += slot1_symbols[i][j];
2014-06-17 02:11:41 -07:00
}
}
pbch_decode_reset(&pbch);
if (1 != pbch_decode(&pbch, slot1_symbols[0], ce, &mib_rx)) {
2014-06-17 02:11:41 -07:00
printf("Error decoding\n");
exit(-1);
}
pbch_free(&pbch);
for (i=0;i<cell.nof_ports;i++) {
2014-06-17 02:11:41 -07:00
free(ce[i]);
free(slot1_symbols[i]);
2014-06-17 02:11:41 -07:00
}
if (!memcmp(&mib_tx, &mib_rx, sizeof(pbch_mib_t))) {
printf("OK\n");
exit(0);
} else {
pbch_mib_fprint(stdout, &mib_rx, cell.id);
2014-06-17 02:11:41 -07:00
exit(-1);
}
2014-03-14 18:04:21 -07:00
}