srsLTE/srslte/lib/phch/test/pbch_test.c

153 lines
3.9 KiB
C
Raw Normal View History

2014-03-14 18:04:21 -07:00
/**
*
* \section COPYRIGHT
*
2015-05-08 08:05:40 -07:00
* Copyright 2013-2015 The srsLTE Developers. See the
2014-03-14 18:04:21 -07:00
* COPYRIGHT file at the top-level directory of this distribution.
*
* \section LICENSE
*
* This file is part of the srsLTE library.
2014-03-14 18:04:21 -07:00
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 08:05:40 -07:00
* it under the terms of the GNU Affero General Public License as
2014-03-14 18:04:21 -07:00
* 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,
2014-03-14 18:04:21 -07:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
2014-03-14 18:04:21 -07:00
*
2015-05-08 08:05:40 -07:00
* A copy of the GNU Affero General Public License can be found in
2014-03-14 18:04:21 -07:00
* 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>
2014-10-19 03:47:48 -07:00
#include <time.h>
2014-03-14 18:04:21 -07:00
#include "srslte/srslte.h"
2014-03-14 18:04:21 -07:00
2015-03-18 05:41:50 -07:00
srslte_cell_t cell = {
6, // nof_prb
1, // nof_ports
1, // cell_id
2015-04-05 07:32:35 -07:00
SRSLTE_CP_NORM, // cyclic prefix
2015-03-18 05:59:29 -07:00
SRSLTE_PHICH_R_1, // PHICH resources
SRSLTE_PHICH_NORM // PHICH length
};
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);
2015-03-18 11:14:24 -07:00
printf("\t-v [set srslte_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':
2015-03-18 11:14:24 -07:00
srslte_verbose++;
2014-06-17 02:11:41 -07:00
break;
default:
usage(argv[0]);
exit(-1);
}
}
2014-03-14 18:04:21 -07:00
}
int main(int argc, char **argv) {
2015-03-18 11:14:24 -07:00
srslte_pbch_t pbch;
2015-03-24 07:58:33 -07:00
uint8_t bch_payload_tx[SRSLTE_BCH_PAYLOAD_LEN], bch_payload_rx[SRSLTE_BCH_PAYLOAD_LEN];
2014-06-17 02:11:41 -07:00
int i, j;
2015-03-18 05:41:50 -07:00
cf_t *ce[SRSLTE_MAX_PORTS];
2014-06-17 02:11:41 -07:00
int nof_re;
2015-03-18 05:41:50 -07:00
cf_t *slot1_symbols[SRSLTE_MAX_PORTS];
uint32_t nof_rx_ports;
2014-06-17 02:11:41 -07:00
parse_args(argc,argv);
2015-04-05 07:32:35 -07:00
nof_re = SRSLTE_SLOT_LEN_RE(cell.nof_prb, SRSLTE_CP_NORM);
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);
}
}
2015-03-18 11:14:24 -07:00
if (srslte_pbch_init(&pbch, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error creating PBCH object\n");
exit(-1);
}
2014-10-19 03:47:48 -07:00
srand(time(NULL));
2015-03-24 07:58:33 -07:00
for (i=0;i<SRSLTE_BCH_PAYLOAD_LEN;i++) {
bch_payload_tx[i] = rand()%2;
}
2014-06-17 02:11:41 -07:00
2015-03-18 11:14:24 -07:00
srslte_pbch_encode(&pbch, bch_payload_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
}
}
2015-03-18 11:14:24 -07:00
srslte_pbch_decode_reset(&pbch);
if (1 != srslte_pbch_decode(&pbch, slot1_symbols[0], ce, 0, bch_payload_rx, &nof_rx_ports, NULL)) {
2014-06-17 02:11:41 -07:00
printf("Error decoding\n");
exit(-1);
}
2015-03-18 11:14:24 -07:00
srslte_pbch_free(&pbch);
2014-06-17 02:11:41 -07:00
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
}
2014-10-19 03:47:48 -07:00
printf("Tx ports: %d - Rx ports: %d\n", cell.nof_ports, nof_rx_ports);
printf("Tx payload: ");
2015-03-24 07:58:33 -07:00
srslte_vec_fprint_hex(stdout, bch_payload_tx, SRSLTE_BCH_PAYLOAD_LEN);
2014-10-19 03:47:48 -07:00
printf("Rx payload: ");
2015-03-24 07:58:33 -07:00
srslte_vec_fprint_hex(stdout, bch_payload_rx, SRSLTE_BCH_PAYLOAD_LEN);
2014-06-17 02:11:41 -07:00
2015-03-24 07:58:33 -07:00
if (nof_rx_ports == cell.nof_ports && !memcmp(bch_payload_rx, bch_payload_tx, sizeof(uint8_t) * SRSLTE_BCH_PAYLOAD_LEN)) {
2014-06-17 02:11:41 -07:00
printf("OK\n");
exit(0);
} else {
printf("Error\n");
2014-06-17 02:11:41 -07:00
exit(-1);
}
2014-03-14 18:04:21 -07:00
}