mirror of https://github.com/pvnis/srsRAN_4G.git
Added PUSCH DRMS signal generation
parent
729519ac7e
commit
9a614ec9d1
@ -1,249 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* \section COPYRIGHT
|
|
||||||
*
|
|
||||||
* Copyright 2013-2014 The libLTE Developers. See the
|
|
||||||
* COPYRIGHT file at the top-level directory of this distribution.
|
|
||||||
*
|
|
||||||
* \section LICENSE
|
|
||||||
*
|
|
||||||
* This file is part of the libLTE library.
|
|
||||||
*
|
|
||||||
* libLTE is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Lesser General Public License as
|
|
||||||
* published by the Free Software Foundation, either version 3 of
|
|
||||||
* the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* libLTE 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 Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* A copy of the GNU Lesser 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 <complex.h>
|
|
||||||
|
|
||||||
#include "liblte/phy/phy.h"
|
|
||||||
|
|
||||||
lte_cell_t cell = {
|
|
||||||
6, // nof_prb
|
|
||||||
MAX_PORTS, // nof_ports
|
|
||||||
1000, // cell_id
|
|
||||||
CPNORM // cyclic prefix
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t *output_matlab = NULL;
|
|
||||||
|
|
||||||
void usage(char *prog) {
|
|
||||||
printf("Usage: %s [recov]\n", prog);
|
|
||||||
|
|
||||||
printf("\t-r nof_prb [Default %d]\n", cell.nof_prb);
|
|
||||||
printf("\t-e extended cyclic prefix [Default normal]\n");
|
|
||||||
|
|
||||||
printf("\t-c cell_id (1000 tests all). [Default %d]\n", cell.id);
|
|
||||||
|
|
||||||
printf("\t-o output matlab file [Default %s]\n",output_matlab?output_matlab:"None");
|
|
||||||
printf("\t-v increase verbosity\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
void parse_args(int argc, char **argv) {
|
|
||||||
int opt;
|
|
||||||
while ((opt = getopt(argc, argv, "recov")) != -1) {
|
|
||||||
switch(opt) {
|
|
||||||
case 'r':
|
|
||||||
cell.nof_prb = atoi(argv[optind]);
|
|
||||||
break;
|
|
||||||
case 'e':
|
|
||||||
cell.cp = CPEXT;
|
|
||||||
break;
|
|
||||||
case 'c':
|
|
||||||
cell.id = atoi(argv[optind]);
|
|
||||||
break;
|
|
||||||
case 'o':
|
|
||||||
output_matlab = argv[optind];
|
|
||||||
break;
|
|
||||||
case 'v':
|
|
||||||
verbose++;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
usage(argv[0]);
|
|
||||||
exit(-1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int check_mse(float mod, float arg, int n_port) {
|
|
||||||
INFO("mod=%.4f, arg=%.4f, n_port=%d\n", mod, arg, n_port);
|
|
||||||
switch(n_port) {
|
|
||||||
case 0:
|
|
||||||
if (mod > 0.029) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (arg > 0.029) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
if (mod > 0.012) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (arg > 0.012) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
case 3:
|
|
||||||
if (mod > 3.33) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (arg > 0.63) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
|
||||||
chest_t eq;
|
|
||||||
cf_t *input = NULL, *ce = NULL, *h = NULL;
|
|
||||||
refsignal_t refs;
|
|
||||||
int i, j, n_port, n_slot, cid, num_re;
|
|
||||||
int ret = -1;
|
|
||||||
int max_cid;
|
|
||||||
FILE *fmatlab = NULL;
|
|
||||||
float mse_mag, mse_phase;
|
|
||||||
|
|
||||||
parse_args(argc,argv);
|
|
||||||
|
|
||||||
if (output_matlab) {
|
|
||||||
fmatlab=fopen(output_matlab, "w");
|
|
||||||
if (!fmatlab) {
|
|
||||||
perror("fopen");
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
num_re = cell.nof_prb * RE_X_RB * CP_NSYMB(cell.cp);
|
|
||||||
|
|
||||||
input = malloc(num_re * sizeof(cf_t));
|
|
||||||
if (!input) {
|
|
||||||
perror("malloc");
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
h = malloc(num_re * sizeof(cf_t));
|
|
||||||
if (!h) {
|
|
||||||
perror("malloc");
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
ce = malloc(num_re * sizeof(cf_t));
|
|
||||||
if (!ce) {
|
|
||||||
perror("malloc");
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cell.id == 1000) {
|
|
||||||
cid = 0;
|
|
||||||
max_cid = 504;
|
|
||||||
} else {
|
|
||||||
cid = cell.id;
|
|
||||||
max_cid = cell.id;
|
|
||||||
}
|
|
||||||
|
|
||||||
while(cid <= max_cid) {
|
|
||||||
cell.id = cid;
|
|
||||||
if (chest_init_LTEUL(&eq, cell)) {
|
|
||||||
fprintf(stderr, "Error initializing equalizer\n");
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (n_slot=0;n_slot<NSLOTS_X_FRAME;n_slot++) {
|
|
||||||
for (n_port=0;n_port<cell.nof_ports;n_port++) {
|
|
||||||
|
|
||||||
if (refsignal_init_LTEDL(&refs, n_port, n_slot, cell)) {
|
|
||||||
fprintf(stderr, "Error initiating CRS slot=%d\n", i);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
bzero(input, sizeof(cf_t) * num_re);
|
|
||||||
for (i=0;i<num_re;i++) {
|
|
||||||
input[i] = 0.5-rand()/RAND_MAX+I*(0.5-rand()/RAND_MAX);
|
|
||||||
}
|
|
||||||
|
|
||||||
bzero(ce, sizeof(cf_t) * num_re);
|
|
||||||
bzero(h, sizeof(cf_t) * num_re);
|
|
||||||
|
|
||||||
refsignal_put(&refs, input);
|
|
||||||
|
|
||||||
for (i=0;i<CP_NSYMB(cell.cp);i++) {
|
|
||||||
for (j=0;j<cell.nof_prb * RE_X_RB;j++) {
|
|
||||||
float x = -1+(float) i/CP_NSYMB(cell.cp) + cosf(2 * M_PI * (float) j/cell.nof_prb/RE_X_RB);
|
|
||||||
h[i*cell.nof_prb * RE_X_RB+j] = (3+x) * cexpf(I * x);
|
|
||||||
input[i*cell.nof_prb * RE_X_RB+j] *= h[i*cell.nof_prb * RE_X_RB+j];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
chest_ce_slot_port(&eq, input, ce, n_slot, n_port);
|
|
||||||
|
|
||||||
mse_mag = mse_phase = 0;
|
|
||||||
for (i=0;i<num_re;i++) {
|
|
||||||
mse_mag += (cabsf(h[i]) - cabsf(ce[i])) * (cabsf(h[i]) - cabsf(ce[i])) / num_re;
|
|
||||||
mse_phase += (cargf(h[i]) - cargf(ce[i])) * (cargf(h[i]) - cargf(ce[i])) / num_re;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (check_mse(mse_mag, mse_phase, n_port)) {
|
|
||||||
goto do_exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fmatlab) {
|
|
||||||
fprintf(fmatlab, "input=");
|
|
||||||
vec_fprint_c(fmatlab, input, num_re);
|
|
||||||
fprintf(fmatlab, ";\n");
|
|
||||||
fprintf(fmatlab, "h=");
|
|
||||||
vec_fprint_c(fmatlab, h, num_re);
|
|
||||||
fprintf(fmatlab, ";\n");
|
|
||||||
fprintf(fmatlab, "ce=");
|
|
||||||
vec_fprint_c(fmatlab, ce, num_re);
|
|
||||||
fprintf(fmatlab, ";\n");
|
|
||||||
chest_fprint(&eq, fmatlab, n_slot, n_port);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
chest_free(&eq);
|
|
||||||
cid+=10;
|
|
||||||
INFO("cid=%d\n", cid);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ret = 0;
|
|
||||||
|
|
||||||
do_exit:
|
|
||||||
|
|
||||||
if (ce) {
|
|
||||||
free(ce);
|
|
||||||
}
|
|
||||||
if (input) {
|
|
||||||
free(input);
|
|
||||||
}
|
|
||||||
if (h) {
|
|
||||||
free(h);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ret) {
|
|
||||||
printf("OK\n");
|
|
||||||
} else {
|
|
||||||
printf("Error at cid=%d, slot=%d, port=%d\n",cid, n_slot, n_port);
|
|
||||||
}
|
|
||||||
|
|
||||||
exit(ret);
|
|
||||||
}
|
|
@ -0,0 +1,147 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2014 The libLTE Developers. See the
|
||||||
|
* COPYRIGHT file at the top-level directory of this distribution.
|
||||||
|
*
|
||||||
|
* \section LICENSE
|
||||||
|
*
|
||||||
|
* This file is part of the libLTE library.
|
||||||
|
*
|
||||||
|
* libLTE is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* libLTE 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 Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of the GNU Lesser 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 <string.h>
|
||||||
|
#include "liblte/phy/phy.h"
|
||||||
|
#include "liblte/mex/mexutils.h"
|
||||||
|
|
||||||
|
/** MEX function to be called from MATLAB to test the channel estimator
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define UECFG prhs[0]
|
||||||
|
#define PUSCHCFG prhs[1]
|
||||||
|
#define NOF_INPUTS 2
|
||||||
|
|
||||||
|
void help()
|
||||||
|
{
|
||||||
|
mexErrMsgTxt
|
||||||
|
("[seq] = liblte_refsignal_pusch(ueConfig, puschConfig)\n\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
extern int indices[2048];
|
||||||
|
|
||||||
|
/* the gateway function */
|
||||||
|
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
|
||||||
|
{
|
||||||
|
lte_cell_t cell;
|
||||||
|
refsignal_ul_t refs;
|
||||||
|
refsignal_drms_pusch_cfg_t pusch_cfg;
|
||||||
|
cf_t *signal;
|
||||||
|
uint32_t sf_idx;
|
||||||
|
|
||||||
|
if (nrhs != NOF_INPUTS) {
|
||||||
|
help();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "NCellID", &cell.id)) {
|
||||||
|
mexErrMsgTxt("Field NCellID not found in UE config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
cell.nof_prb = 100;
|
||||||
|
cell.cp = CPNORM;
|
||||||
|
cell.nof_ports = 1;
|
||||||
|
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "NSubframe", &sf_idx)) {
|
||||||
|
mexErrMsgTxt("Field NSubframe not found in UE config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
bzero(&pusch_cfg, sizeof(refsignal_drms_pusch_cfg_t));
|
||||||
|
|
||||||
|
|
||||||
|
char *tmp = mexutils_get_char_struct(UECFG, "Hopping");
|
||||||
|
if (tmp) {
|
||||||
|
if (!strcmp(tmp, "Group")) {
|
||||||
|
pusch_cfg.hopping_method = HOPPING_GROUP;
|
||||||
|
} else if (!strcmp(tmp, "Sequence")) {
|
||||||
|
pusch_cfg.hopping_method = HOPPING_SEQUENCE;
|
||||||
|
} else {
|
||||||
|
pusch_cfg.hopping_method = HOPPING_OFF;
|
||||||
|
}
|
||||||
|
mxFree(tmp);
|
||||||
|
} else {
|
||||||
|
pusch_cfg.hopping_method = HOPPING_OFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "SeqGroup", &pusch_cfg.common.delta_ss)) {
|
||||||
|
pusch_cfg.common.delta_ss = 0;
|
||||||
|
}
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "CyclicShift", &pusch_cfg.common.cyclic_shift)) {
|
||||||
|
pusch_cfg.common.cyclic_shift = 0;
|
||||||
|
}
|
||||||
|
float *prbset;
|
||||||
|
mxArray *p;
|
||||||
|
p = mxGetField(PUSCHCFG, 0, "PRBSet");
|
||||||
|
if (!p) {
|
||||||
|
mexErrMsgTxt("Error field PRBSet not found in PUSCH config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pusch_cfg.nof_prb = mexutils_read_f(p, &prbset);
|
||||||
|
free(prbset);
|
||||||
|
|
||||||
|
if (mexutils_read_uint32_struct(PUSCHCFG, "DynCyclicShift", &pusch_cfg.common.cyclic_shift_for_drms)) {
|
||||||
|
pusch_cfg.common.cyclic_shift_for_drms = 0;
|
||||||
|
pusch_cfg.common.en_drms_2 = false;
|
||||||
|
} else {
|
||||||
|
pusch_cfg.common.en_drms_2 = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
pusch_cfg.beta_pusch = 1.0;
|
||||||
|
|
||||||
|
if (refsignal_ul_init(&refs, cell)) {
|
||||||
|
mexErrMsgTxt("Error initiating refsignal_ul\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mexPrintf("nof_prb: %d, ",pusch_cfg.nof_prb);
|
||||||
|
mexPrintf("cyclic_shift: %d, ",pusch_cfg.common.cyclic_shift);
|
||||||
|
mexPrintf("cyclic_shift_for_drms: %d, ",pusch_cfg.common.cyclic_shift_for_drms);
|
||||||
|
mexPrintf("delta_ss: %d, ",pusch_cfg.common.delta_ss);
|
||||||
|
mexPrintf("hopping_method: %d\n, ",pusch_cfg.hopping_method);
|
||||||
|
|
||||||
|
signal = vec_malloc(2*RE_X_RB*pusch_cfg.nof_prb*sizeof(cf_t));
|
||||||
|
if (!signal) {
|
||||||
|
perror("malloc");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (uint32_t i=0;i<2;i++) {
|
||||||
|
//mexPrintf("Generating DRMS for ns=%d, nof_prb=%d\n", 2*sf_idx+i,pusch_cfg.nof_prb);
|
||||||
|
refsignal_dmrs_pusch_gen(&refs, &pusch_cfg, 2*sf_idx+i, &signal[i*RE_X_RB*pusch_cfg.nof_prb]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nlhs >= 1) {
|
||||||
|
mexutils_write_cf(signal, &plhs[0], 2*RE_X_RB*pusch_cfg.nof_prb, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
refsignal_ul_free(&refs);
|
||||||
|
free(signal);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,144 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2014 The libLTE Developers. See the
|
||||||
|
* COPYRIGHT file at the top-level directory of this distribution.
|
||||||
|
*
|
||||||
|
* \section LICENSE
|
||||||
|
*
|
||||||
|
* This file is part of the libLTE library.
|
||||||
|
*
|
||||||
|
* libLTE is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* libLTE 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 Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of the GNU Lesser 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 <complex.h>
|
||||||
|
|
||||||
|
#include "liblte/phy/phy.h"
|
||||||
|
|
||||||
|
lte_cell_t cell = {
|
||||||
|
6, // nof_prb
|
||||||
|
MAX_PORTS, // nof_ports
|
||||||
|
0, // cell_id
|
||||||
|
CPNORM // cyclic prefix
|
||||||
|
};
|
||||||
|
|
||||||
|
void usage(char *prog) {
|
||||||
|
printf("Usage: %s [recv]\n", prog);
|
||||||
|
|
||||||
|
printf("\t-r nof_prb [Default %d]\n", cell.nof_prb);
|
||||||
|
printf("\t-e extended cyclic prefix [Default normal]\n");
|
||||||
|
|
||||||
|
printf("\t-c cell_id (1000 tests all). [Default %d]\n", cell.id);
|
||||||
|
|
||||||
|
printf("\t-v increase verbosity\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void parse_args(int argc, char **argv) {
|
||||||
|
int opt;
|
||||||
|
while ((opt = getopt(argc, argv, "recv")) != -1) {
|
||||||
|
switch(opt) {
|
||||||
|
case 'r':
|
||||||
|
cell.nof_prb = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'e':
|
||||||
|
cell.cp = CPEXT;
|
||||||
|
break;
|
||||||
|
case 'c':
|
||||||
|
cell.id = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'v':
|
||||||
|
verbose++;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
usage(argv[0]);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
lte_hopping_method_t hopping_modes[3]={HOPPING_OFF, HOPPING_GROUP, HOPPING_SEQUENCE};
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
refsignal_ul_t refs;
|
||||||
|
refsignal_drms_pusch_cfg_t pusch_cfg;
|
||||||
|
cf_t *signal = NULL;
|
||||||
|
int i, j;
|
||||||
|
int ret = -1;
|
||||||
|
|
||||||
|
parse_args(argc,argv);
|
||||||
|
|
||||||
|
signal = malloc(RE_X_RB * cell.nof_prb * sizeof(cf_t));
|
||||||
|
if (!signal) {
|
||||||
|
perror("malloc");
|
||||||
|
goto do_exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (refsignal_ul_init(&refs, cell)) {
|
||||||
|
fprintf(stderr, "Error initializing UL reference signal\n");
|
||||||
|
goto do_exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Running tests for %d PRB\n", cell.nof_prb);
|
||||||
|
|
||||||
|
for (int n=3;n<cell.nof_prb;n++) {
|
||||||
|
for (int delta_ss=0;delta_ss<NOF_DELTA_SS;delta_ss++) {
|
||||||
|
for (int cshift=0;cshift<NOF_CSHIFT;cshift++) {
|
||||||
|
for (int h=0;h<3;h++) {
|
||||||
|
for (int ns=0;ns<NSLOTS_X_FRAME;ns++) {
|
||||||
|
for (int cshift_drms=5;cshift_drms<NOF_CSHIFT;cshift_drms++) {
|
||||||
|
pusch_cfg.beta_pusch = 1.0;
|
||||||
|
pusch_cfg.nof_prb = n;
|
||||||
|
pusch_cfg.common.cyclic_shift = cshift;
|
||||||
|
pusch_cfg.common.cyclic_shift_for_drms = cshift_drms;
|
||||||
|
pusch_cfg.common.delta_ss = delta_ss;
|
||||||
|
pusch_cfg.hopping_method = hopping_modes[h];
|
||||||
|
pusch_cfg.common.en_drms_2 = true;
|
||||||
|
printf("Beta: %f, ",pusch_cfg.beta_pusch);
|
||||||
|
printf("nof_prb: %d, ",pusch_cfg.nof_prb);
|
||||||
|
printf("cyclic_shift: %d, ",pusch_cfg.common.cyclic_shift);
|
||||||
|
printf("cyclic_shift_for_drms: %d, ",pusch_cfg.common.cyclic_shift_for_drms);
|
||||||
|
printf("delta_ss: %d, ",pusch_cfg.common.delta_ss);
|
||||||
|
printf("hopping_method: %d, ",pusch_cfg.hopping_method);
|
||||||
|
printf("Slot: %d\n", ns);
|
||||||
|
refsignal_dmrs_pusch_gen(&refs, &pusch_cfg, ns, signal);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
do_exit:
|
||||||
|
|
||||||
|
if (signal) {
|
||||||
|
free(signal);
|
||||||
|
}
|
||||||
|
|
||||||
|
refsignal_ul_free(&refs);
|
||||||
|
|
||||||
|
if (!ret) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
exit(ret);
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
ueConfig=struct('CyclicPrefixUL','Normal','NTxAnts',1);
|
||||||
|
puschConfig=struct('NLayers',1,'OrthCover','Off');
|
||||||
|
|
||||||
|
addpath('../../debug/lte/phy/lib/ch_estimation/test')
|
||||||
|
|
||||||
|
Hopping={'Off','Sequence','Group'};
|
||||||
|
|
||||||
|
k=1;
|
||||||
|
for prb=3:6
|
||||||
|
for ncell=0:2
|
||||||
|
for ns=0:9
|
||||||
|
for h=1:3
|
||||||
|
for sg=0:29
|
||||||
|
for cs=0:7
|
||||||
|
for ds=0:7
|
||||||
|
|
||||||
|
ueConfig.NCellID=ncell;
|
||||||
|
ueConfig.NSubframe=ns;
|
||||||
|
ueConfig.Hopping=Hopping{h};
|
||||||
|
ueConfig.SeqGroup=sg;
|
||||||
|
ueConfig.CyclicShift=cs;
|
||||||
|
|
||||||
|
puschConfig.PRBSet=(0:(prb-1))';
|
||||||
|
puschConfig.DynCyclicShift=ds;
|
||||||
|
|
||||||
|
[mat, info]=ltePUSCHDRS(ueConfig,puschConfig);
|
||||||
|
lib=liblte_refsignal_pusch(ueConfig,puschConfig);
|
||||||
|
|
||||||
|
error(k)=mean(abs(mat-lib));
|
||||||
|
disp(error(k))
|
||||||
|
if (error(k) > 10^-4)
|
||||||
|
k=1;
|
||||||
|
end
|
||||||
|
k=k+1;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
plot(error);
|
||||||
|
disp(info)
|
||||||
|
disp(length(mat))
|
||||||
|
n=1:length(mat);
|
||||||
|
plot(n,real(mat(n)),n,real(lib(n)))
|
||||||
|
|
Loading…
Reference in New Issue