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.
184 lines
4.3 KiB
C
184 lines
4.3 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2015 The srsLTE Developers. See the
|
|
* COPYRIGHT file at the top-level directory of this distribution.
|
|
*
|
|
* \section LICENSE
|
|
*
|
|
* This file is part of the srsLTE library.
|
|
*
|
|
* srsLTE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* 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,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero 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 <math.h>
|
|
#include <time.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "srslte/srslte.h"
|
|
|
|
char *srslte_sequence_name = NULL;
|
|
bool do_floats = false;
|
|
srslte_cp_t cp = SRSLTE_CP_NORM;
|
|
int cell_id = -1;
|
|
int nof_bits = 100;
|
|
|
|
void usage(char *prog) {
|
|
printf("Usage: %s [ef] -c cell_id -s [PBCH, PDSCH, PDCCH, PMCH, PUCCH]\n", prog);
|
|
printf("\t -l nof_bits [Default %d]\n", nof_bits);
|
|
printf("\t -e CP extended [Default CP Normal]\n");
|
|
printf("\t -f scramble floats [Default bits]\n");
|
|
}
|
|
|
|
void parse_args(int argc, char **argv) {
|
|
int opt;
|
|
while ((opt = getopt(argc, argv, "csefl")) != -1) {
|
|
switch (opt) {
|
|
case 'c':
|
|
cell_id = atoi(argv[optind]);
|
|
break;
|
|
case 'l':
|
|
nof_bits = atoi(argv[optind]);
|
|
break;
|
|
case 'e':
|
|
cp = SRSLTE_CP_EXT;
|
|
break;
|
|
case 'f':
|
|
do_floats = true;
|
|
break;
|
|
case 's':
|
|
srslte_sequence_name = argv[optind];
|
|
break;
|
|
default:
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
}
|
|
if (cell_id == -1) {
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
if (!srslte_sequence_name) {
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
}
|
|
|
|
int init_sequence(srslte_sequence_t *seq, char *name) {
|
|
if (!strcmp(name, "PBCH")) {
|
|
return srslte_sequence_pbch(seq, cp, cell_id);
|
|
} else if (!strcmp(name, "PDSCH")) {
|
|
return srslte_sequence_pdsch(seq, 1234, 0, 0, cell_id, nof_bits);
|
|
} else {
|
|
fprintf(stderr, "Unsupported sequence name %s\n", name);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
int i;
|
|
srslte_sequence_t seq;
|
|
uint8_t *input_b, *scrambled_b;
|
|
float *input_f, *scrambled_f;
|
|
struct timeval t[3];
|
|
|
|
parse_args(argc, argv);
|
|
|
|
if (init_sequence(&seq, srslte_sequence_name) == -1) {
|
|
fprintf(stderr, "Error initiating sequence %s\n", srslte_sequence_name);
|
|
exit(-1);
|
|
}
|
|
|
|
if (!do_floats) {
|
|
input_b = malloc(sizeof(uint8_t) * seq.len);
|
|
if (!input_b) {
|
|
perror("malloc");
|
|
exit(-1);
|
|
}
|
|
scrambled_b = malloc(sizeof(uint8_t) * seq.len);
|
|
if (!scrambled_b) {
|
|
perror("malloc");
|
|
exit(-1);
|
|
}
|
|
|
|
for (i=0;i<seq.len;i++) {
|
|
input_b[i] = rand()%2;
|
|
scrambled_b[i] = input_b[i];
|
|
}
|
|
|
|
gettimeofday(&t[1], NULL);
|
|
srslte_scrambling_b(&seq, scrambled_b);
|
|
gettimeofday(&t[2], NULL);
|
|
srslte_scrambling_b(&seq, scrambled_b);
|
|
|
|
get_time_interval(t);
|
|
printf("Texec=%d us for %d bits\n", t[0].tv_usec, seq.len);
|
|
|
|
for (i=0;i<seq.len;i++) {
|
|
if (scrambled_b[i] != input_b[i]) {
|
|
printf("Error in %d\n", i);
|
|
exit(-1);
|
|
}
|
|
}
|
|
free(input_b);
|
|
free(scrambled_b);
|
|
} else {
|
|
input_f = malloc(sizeof(float) * seq.len);
|
|
if (!input_f) {
|
|
perror("malloc");
|
|
exit(-1);
|
|
}
|
|
scrambled_f = malloc(sizeof(float) * seq.len);
|
|
if (!scrambled_f) {
|
|
perror("malloc");
|
|
exit(-1);
|
|
}
|
|
|
|
for (i=0;i<seq.len;i++) {
|
|
input_f[i] = 100*(rand()/RAND_MAX);
|
|
scrambled_f[i] = input_f[i];
|
|
}
|
|
|
|
gettimeofday(&t[1], NULL);
|
|
srslte_scrambling_f(&seq, scrambled_f);
|
|
gettimeofday(&t[2], NULL);
|
|
srslte_scrambling_f(&seq, scrambled_f);
|
|
|
|
get_time_interval(t);
|
|
printf("Texec=%d us for %d bits\n", t[0].tv_usec, seq.len);
|
|
|
|
for (i=0;i<seq.len;i++) {
|
|
if (scrambled_f[i] != input_f[i]) {
|
|
printf("Error in %d\n", i);
|
|
exit(-1);
|
|
}
|
|
}
|
|
|
|
free(input_f);
|
|
free(scrambled_f);
|
|
}
|
|
printf("Ok\n");
|
|
srslte_sequence_free(&seq);
|
|
exit(0);
|
|
}
|