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.
164 lines
3.7 KiB
C
164 lines
3.7 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2015 Software Radio Systems Limited
|
|
*
|
|
* \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 <strings.h>
|
|
#include <unistd.h>
|
|
#include <math.h>
|
|
#include <time.h>
|
|
#include <complex.h>
|
|
|
|
#include "srslte/dft/dft.h"
|
|
|
|
|
|
|
|
int N = 256;
|
|
bool forward = true;
|
|
bool mirror = false;
|
|
bool norm = false;
|
|
bool dc = false;
|
|
|
|
void usage(char *prog) {
|
|
printf("Usage: %s\n", prog);
|
|
printf("\t-N Transform size [Default 256]\n");
|
|
printf("\t-b Backwards transform first [Default Forwards]\n");
|
|
printf("\t-m Mirror the transform freq bins [Default false]\n");
|
|
printf("\t-n Normalize the transform output [Default false]\n");
|
|
printf("\t-d Handle insertion/removal of null DC carrier internally [Default false]\n");
|
|
}
|
|
|
|
void parse_args(int argc, char **argv) {
|
|
int opt;
|
|
while ((opt = getopt(argc, argv, "Nbmnd")) != -1) {
|
|
switch (opt) {
|
|
case 'N':
|
|
N = atoi(argv[optind]);
|
|
break;
|
|
case 'b':
|
|
forward = false;
|
|
break;
|
|
case 'm':
|
|
mirror = true;
|
|
break;
|
|
case 'n':
|
|
norm = true;
|
|
break;
|
|
case 'd':
|
|
dc = true;
|
|
break;
|
|
default:
|
|
usage(argv[0]);
|
|
exit(-1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void print(cf_t* in, int len)
|
|
{
|
|
for(int i=0;i<len;i++)
|
|
{
|
|
float re = crealf(in[i]);
|
|
float im = cimagf(in[i]);
|
|
printf("%f+%fi, ", re, im);
|
|
}
|
|
printf("\n\n");
|
|
}
|
|
|
|
int test_dft(cf_t* in){
|
|
int res = 0;
|
|
|
|
srslte_dft_plan_t plan;
|
|
if(forward){
|
|
srslte_dft_plan(&plan, N, SRSLTE_DFT_FORWARD, SRSLTE_DFT_COMPLEX);
|
|
} else {
|
|
srslte_dft_plan(&plan, N, SRSLTE_DFT_BACKWARD, SRSLTE_DFT_COMPLEX);
|
|
}
|
|
srslte_dft_plan_set_mirror(&plan, mirror);
|
|
srslte_dft_plan_set_norm(&plan, norm);
|
|
srslte_dft_plan_set_dc(&plan, dc);
|
|
|
|
cf_t* out1 = malloc(sizeof(cf_t)*N);
|
|
cf_t* out2 = malloc(sizeof(cf_t)*N);
|
|
bzero(out1, sizeof(cf_t)*N);
|
|
bzero(out2, sizeof(cf_t)*N);
|
|
|
|
print(in, N);
|
|
srslte_dft_run(&plan, in, out1);
|
|
print(out1, N);
|
|
|
|
srslte_dft_plan_t plan_rev;
|
|
if(!forward){
|
|
srslte_dft_plan(&plan_rev, N, SRSLTE_DFT_FORWARD, SRSLTE_DFT_COMPLEX);
|
|
} else {
|
|
srslte_dft_plan(&plan_rev, N, SRSLTE_DFT_BACKWARD, SRSLTE_DFT_COMPLEX);
|
|
}
|
|
srslte_dft_plan_set_mirror(&plan_rev, mirror);
|
|
srslte_dft_plan_set_norm(&plan_rev, norm);
|
|
srslte_dft_plan_set_dc(&plan_rev, dc);
|
|
|
|
srslte_dft_run(&plan_rev, out1, out2);
|
|
print(out2, N);
|
|
|
|
if(!norm){
|
|
cf_t n = N+0*I;
|
|
for(int i=0;i<N;i++)
|
|
out2[i] /= n;
|
|
}
|
|
|
|
for(int i=0;i<N;i++){
|
|
float diff = cabsf(in[i] - out2[i]);
|
|
if(diff > 0.01)
|
|
res = -1;
|
|
}
|
|
|
|
srslte_dft_plan_free(&plan);
|
|
srslte_dft_plan_free(&plan_rev);
|
|
free(out1);
|
|
free(out2);
|
|
|
|
return res;
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
parse_args(argc, argv);
|
|
cf_t* in = malloc(sizeof(cf_t)*N);
|
|
bzero(in, sizeof(cf_t)*N);
|
|
for(int i=1;i<N-1;i++)
|
|
{
|
|
float re = 100*(float)rand()/RAND_MAX;
|
|
float im = 100*(float)rand()/RAND_MAX;
|
|
in[i] = re + im*I;
|
|
}
|
|
|
|
if(test_dft(in) != 0)
|
|
return -1;
|
|
|
|
free(in);
|
|
printf("Done\n");
|
|
exit(0);
|
|
}
|