/** * * \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 #include #include #include #include #include #include #include "srslte/srslte.h" #include "viterbi_test.h" int frame_length = 1000, nof_frames = 128; float ebno_db = 100.0; uint32_t seed = 0; bool tail_biting = false; int K = -1; #define SNR_POINTS 10 #define SNR_MIN 0.0 #define SNR_MAX 5.0 #define NCODS 3 #define NTYPES 1+NCODS void usage(char *prog) { printf("Usage: %s [nlestk]\n", prog); printf("\t-n nof_frames [Default %d]\n", nof_frames); printf("\t-l frame_length [Default %d]\n", frame_length); printf("\t-e ebno in dB [Default scan]\n"); printf("\t-s seed [Default 0=time]\n"); printf("\t-t tail_bitting [Default %s]\n", tail_biting ? "yes" : "no"); printf("\t-k constraint length [Default both]\n", K); } void parse_args(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "nlstek")) != -1) { switch (opt) { case 'n': nof_frames = atoi(argv[optind]); break; case 'l': frame_length = atoi(argv[optind]); break; case 'e': ebno_db = atof(argv[optind]); break; case 's': seed = (uint32_t) strtoul(argv[optind], NULL, 0); break; case 't': tail_biting = true; break; case 'k': K = atoi(argv[optind]); break; default: usage(argv[0]); exit(-1); } } } void output_matlab(float ber[NTYPES][SNR_POINTS], int snr_points, srslte_convcoder_t cod[NCODS], int ncods) { int i, j, n; FILE *f = fopen("srslte_viterbi_snr.m", "w"); if (!f) { perror("fopen"); exit(-1); } fprintf(f, "ber=["); for (j = 0; j < NTYPES; j++) { for (i = 0; i < snr_points; i++) { fprintf(f, "%g ", ber[j][i]); } fprintf(f, "; "); } fprintf(f, "];\n"); fprintf(f, "snr=linspace(%g,%g-%g/%d,%d);\n", SNR_MIN, SNR_MAX, SNR_MAX, snr_points, snr_points); fprintf(f, "semilogy(snr,ber,snr,0.5*erfc(sqrt(10.^(snr/10))));\n"); fprintf(f, "legend('uncoded',"); for (n=0;n max_coded_length) { max_coded_length = coded_length[i]; } srslte_viterbi_init(&dec[i], srslte_viterbi_type[i], cod[i].poly, frame_length, cod[i].tail_biting); printf("Convolutional Code 1/3 K=%d Tail bitting: %s\n", cod[i].K, cod[i].tail_biting ? "yes" : "no"); } printf(" Frame length: %d\n", frame_length); if (ebno_db < 100.0) { printf(" EbNo: %.2f\n", ebno_db); } data_tx = malloc(frame_length * sizeof(uint8_t)); if (!data_tx) { perror("malloc"); exit(-1); } for (i = 0; i < NTYPES; i++) { data_rx[i] = malloc(frame_length * sizeof(uint8_t)); if (!data_rx[i]) { perror("malloc"); exit(-1); } } symbols = malloc(max_coded_length * sizeof(uint8_t)); if (!symbols) { perror("malloc"); exit(-1); } llr = malloc(max_coded_length * sizeof(float)); if (!llr) { perror("malloc"); exit(-1); } llr_c = malloc(2 * max_coded_length * sizeof(uint8_t)); if (!llr_c) { perror("malloc"); exit(-1); } float ebno_inc, esno_db; ebno_inc = (SNR_MAX - SNR_MIN) / SNR_POINTS; if (ebno_db == 100.0) { snr_points = SNR_POINTS; for (i = 0; i < snr_points; i++) { ebno_db = SNR_MIN + i * ebno_inc; esno_db = ebno_db + 10 * log10((double) 1 / 3); var[i] = sqrt(1 / (pow(10, esno_db / 10))); varunc[i] = sqrt(1 / (pow(10, ebno_db / 10))); } } else { esno_db = ebno_db + 10 * log10((double) 1 / 3); var[0] = sqrt(1 / (pow(10, esno_db / 10))); varunc[0] = sqrt(1 / (pow(10, ebno_db / 10))); snr_points = 1; } float Gain = 32; for (i = 0; i < snr_points; i++) { frame_cnt = 0; for (j = 0; j < NTYPES; j++) { errors[j] = 0; } while (frame_cnt < nof_frames) { /* generate data_tx */ for (j = 0; j < frame_length; j++) { data_tx[j] = rand() % 2; } /* uncoded BER */ for (j = 0; j < frame_length; j++) { llr[j] = data_tx[j] ? sqrt(2) : -sqrt(2); } srslte_ch_awgn_f(llr, llr, varunc[i], frame_length); for (j = 0; j < frame_length; j++) { data_rx[0][j] = llr[j] > 0 ? 1 : 0; } /* coded BER */ for (n=0;n expected_errors); } } else { printf("\n"); output_matlab(ber, snr_points, cod, ncods); printf("Done\n"); exit(0); } }