/* * Copyright 2013-2019 Software Radio Systems Limited * * This file is part of srsLTE. * * 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 "srslte/phy/phch/npbch.h" #include "srslte/phy/utils/debug.h" #include "srslte/phy/utils/vector.h" #define HAVE_OFDM 0 #define HAVE_MIB_NB 1 srslte_nbiot_cell_t cell = {}; void usage(char* prog) { printf("Usage: %s [cpv]\n", prog); printf("\t-c cell id [Default %d]\n", cell.base.id); printf("\t-p cell.nof_ports [Default %d]\n", cell.base.nof_ports); printf("\t-n cell.nof_prb [Default %d]\n", cell.base.nof_prb); printf("\t-v [set srslte_verbose to debug, default none]\n"); } void parse_args(int argc, char** argv) { int opt; while ((opt = getopt(argc, argv, "cpnv")) != -1) { switch (opt) { case 'p': cell.base.nof_ports = (uint32_t)strtol(argv[optind], NULL, 10); break; case 'n': cell.base.nof_prb = (uint32_t)strtol(argv[optind], NULL, 10); break; case 'c': cell.base.id = (uint32_t)strtol(argv[optind], NULL, 10); break; case 'v': srslte_verbose++; break; default: usage(argv[0]); exit(-1); } } } int re_extract_test() { int ret = SRSLTE_ERROR; srslte_nbiot_cell_t cell2 = {}; cell2.base.id = 257; cell2.base.nof_ports = 1; cell2.n_id_ncell = 257; cell2.nof_ports = 1; cell2.base.nof_prb = 1; if (!srslte_nbiot_cell_isvalid(&cell2)) { printf("cell is not properly configured\n"); return ret; } cf_t sf_syms[168]; for (int i = 0; i < 168; i++) { sf_syms[i] = i + 1; } cf_t npbch_syms[100]; int nof_ext_syms = srslte_npbch_cp(sf_syms, npbch_syms, cell2, false); if (SRSLTE_VERBOSE_ISINFO()) { for (int i = 0; i < nof_ext_syms; i++) { printf("re%d:", i); srslte_vec_fprint_c(stdout, &npbch_syms[i], 1); } } if (nof_ext_syms == 100) { ret = SRSLTE_SUCCESS; printf("RE extraction ok!\n"); } return ret; } int main(int argc, char** argv) { int ret = SRSLTE_ERROR; srslte_npbch_t npbch; uint8_t bch_payload_tx[SRSLTE_MIB_NB_LEN], bch_payload_rx[SRSLTE_MIB_NB_LEN]; cf_t* ce[SRSLTE_MAX_PORTS]; int nof_re; cf_t* sf_symbols[SRSLTE_MAX_PORTS]; uint32_t nof_rx_ports; parse_args(argc, argv); if (re_extract_test() != SRSLTE_SUCCESS) { return ret; } // set essential cell params cell.base.nof_prb = 1; cell.nof_ports = 1; nof_re = SRSLTE_SF_LEN_RE(cell.base.nof_prb, SRSLTE_CP_NORM); /* init memory */ for (int i = 0; i < cell.nof_ports; i++) { ce[i] = malloc(sizeof(cf_t) * nof_re); if (!ce[i]) { perror("malloc"); exit(-1); } for (int j = 0; j < nof_re; j++) { ce[i][j] = 1; } sf_symbols[i] = malloc(sizeof(cf_t) * nof_re); if (!sf_symbols[i]) { perror("malloc"); exit(-1); } memset(sf_symbols[i], 0, sizeof(cf_t) * nof_re); } if (srslte_npbch_init(&npbch)) { fprintf(stderr, "Error creating NPBCH object\n"); exit(-1); } if (srslte_npbch_set_cell(&npbch, cell)) { fprintf(stderr, "Error setting cell in NPBCH object\n"); exit(-1); } #if HAVE_MIB_NB srslte_mib_nb_t mib_nb = {}; mib_nb.sched_info_sib1 = 3; // according to Table 16.4.1.3-3 in 36.213 that means 4 NPDSCH repetitions mib_nb.sys_info_tag = 1; mib_nb.ac_barring = false; mib_nb.mode = SRSLTE_NBIOT_MODE_STANDALONE; uint32_t hfn = 82; uint32_t sfn = 0; srslte_npbch_mib_pack(hfn, sfn, mib_nb, bch_payload_tx); #else // srand(0); srand(time(NULL)); for (i = 0; i < SRSLTE_MIB_NB_LEN; i++) { bch_payload_tx[i] = rand() % 2; } #endif if (srslte_npbch_put_subframe(&npbch, bch_payload_tx, sf_symbols, 0)) { fprintf(stderr, "Error encoding NPBCH\n"); exit(-1); } #if 0 /* combine outputs */ for (i=1;i