#include #include #include #include #include #include #include #include "liblte/phy/utils/dft.h" typedef _Complex float cf_t; 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 0.01) res = -1; } dft_plan_free(&plan); 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