mirror of https://github.com/pvnis/srsRAN_4G.git
Added PUCCH Format 1/a/b
parent
6eb3f1f484
commit
4fed92c21c
@ -0,0 +1,75 @@
|
|||||||
|
clear
|
||||||
|
ueConfig=struct('NCellID',1,'NULRB',6,'NSubframe',8,'RNTI',68,'CyclicPrefixUL','Normal','NTxAnts',1);
|
||||||
|
puschConfig=struct('NLayers',1,'OrthCover','Off','PRBSet',[1:4]','Modulation','QPSK','RV',0,'Shortened',0);
|
||||||
|
|
||||||
|
addpath('../../debug/lte/phy/lib/phch/test')
|
||||||
|
|
||||||
|
% TBs=0:13:211;
|
||||||
|
% cqilen=[0, 8, 17];
|
||||||
|
% mods={'QPSK','16QAM','64QAM'};
|
||||||
|
% rvs=0;
|
||||||
|
% betas=0:3:11;
|
||||||
|
|
||||||
|
TBs=88;
|
||||||
|
cqilen=0;
|
||||||
|
mods={'QPSK'};
|
||||||
|
rvs=0;
|
||||||
|
betas=0;
|
||||||
|
|
||||||
|
for i=1:length(TBs)
|
||||||
|
for m=1:length(mods)
|
||||||
|
for r=1:length(rvs)
|
||||||
|
for bcqi=1:length(betas)
|
||||||
|
for bri=1:length(betas)
|
||||||
|
for back=1:length(betas)
|
||||||
|
for c=1:length(cqilen)
|
||||||
|
|
||||||
|
trblkin=randi(2,TBs(i),1)-1;
|
||||||
|
|
||||||
|
puschConfig.Modulation = mods{m};
|
||||||
|
puschConfig.RV = rvs(r);
|
||||||
|
puschConfig.BetaCQI = 2+betas(bcqi);
|
||||||
|
puschConfig.BetaRI = 2+betas(bri);
|
||||||
|
puschConfig.BetaACK = 2+betas(back);
|
||||||
|
|
||||||
|
if (betas(bri)>0)
|
||||||
|
ri_bit=randi(2,1,1)-1;
|
||||||
|
else
|
||||||
|
ri_bit=[];
|
||||||
|
end
|
||||||
|
if (betas(back)>0)
|
||||||
|
ack_bit=randi(2,1,1)-1;
|
||||||
|
else
|
||||||
|
ack_bit=[];
|
||||||
|
end
|
||||||
|
|
||||||
|
if (cqilen(c)>0 || TBs(i)>0)
|
||||||
|
[cw, info]=lteULSCH(ueConfig,puschConfig,trblkin,ones(1,cqilen(c)),ri_bit,ack_bit,[]);
|
||||||
|
cw_mat=ltePUSCH(ueConfig,puschConfig,cw);
|
||||||
|
idx=ltePUSCHIndices(ueConfig,puschConfig);
|
||||||
|
subframe_mat = lteULResourceGrid(ueConfig);
|
||||||
|
subframe_mat(idx)=cw_mat;
|
||||||
|
waveform = lteSCFDMAModulate(ueConfig,subframe_mat,0);
|
||||||
|
|
||||||
|
[waveform_lib, subframe_lib, cwlib]=srslte_pusch_encode(ueConfig,puschConfig,trblkin,ones(1,cqilen(c)),ri_bit,ack_bit);
|
||||||
|
err=mean(abs(waveform-waveform_lib));
|
||||||
|
if (err > 10^-6)
|
||||||
|
disp(err)
|
||||||
|
error('Error!');
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if (length(TBs) == 1)
|
||||||
|
%disp(info)
|
||||||
|
%n=1:length(mat);
|
||||||
|
%plot(abs(double(mat)-double(lib)))
|
||||||
|
%plot(n,real(lib(n)),n,real(mat(n)))
|
||||||
|
plot(abs(waveform_lib-waveform))
|
||||||
|
end
|
@ -0,0 +1,223 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \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 "srslte/srslte.h"
|
||||||
|
#include "srslte/mex/mexutils.h"
|
||||||
|
|
||||||
|
/** MEX function to be called from MATLAB to test the channel estimator
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define UECFG prhs[0]
|
||||||
|
#define PUSCHCFG prhs[1]
|
||||||
|
#define TRBLKIN prhs[2]
|
||||||
|
#define CQI prhs[3]
|
||||||
|
#define RI prhs[4]
|
||||||
|
#define ACK prhs[5]
|
||||||
|
#define NOF_INPUTS 6
|
||||||
|
|
||||||
|
void help()
|
||||||
|
{
|
||||||
|
mexErrMsgTxt
|
||||||
|
("sym=srslte_pusch_encode(ue, chs, trblkin, cqi, ri, ack)\n\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* the gateway function */
|
||||||
|
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
|
||||||
|
{
|
||||||
|
|
||||||
|
if (nrhs != NOF_INPUTS) {
|
||||||
|
help();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
srslte_cell_t cell;
|
||||||
|
bzero(&cell, sizeof(srslte_cell_t));
|
||||||
|
cell.nof_ports = 1;
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "NCellID", &cell.id)) {
|
||||||
|
mexErrMsgTxt("Field NCellID not found in UE config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "NULRB", &cell.nof_prb)) {
|
||||||
|
mexErrMsgTxt("Field NULRB not found in UE config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
srslte_pusch_t pusch;
|
||||||
|
if (srslte_pusch_init(&pusch, cell)) {
|
||||||
|
mexErrMsgTxt("Error initiating PUSCH\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint32_t rnti32=0;
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "RNTI", &rnti32)) {
|
||||||
|
mexErrMsgTxt("Field RNTI not found in pusch config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
srslte_pusch_set_rnti(&pusch, (uint16_t) (rnti32 & 0xffff));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
uint32_t sf_idx=0;
|
||||||
|
if (mexutils_read_uint32_struct(UECFG, "NSubframe", &sf_idx)) {
|
||||||
|
mexErrMsgTxt("Field NSubframe not found in UE config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
srslte_ra_mcs_t mcs;
|
||||||
|
char *mod_str = mexutils_get_char_struct(PUSCHCFG, "Modulation");
|
||||||
|
if (!strcmp(mod_str, "QPSK")) {
|
||||||
|
mcs.mod = SRSLTE_MOD_QPSK;
|
||||||
|
} else if (!strcmp(mod_str, "16QAM")) {
|
||||||
|
mcs.mod = SRSLTE_MOD_16QAM;
|
||||||
|
} else if (!strcmp(mod_str, "64QAM")) {
|
||||||
|
mcs.mod = SRSLTE_MOD_64QAM;
|
||||||
|
} else {
|
||||||
|
mexErrMsgTxt("Unknown modulation\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mxFree(mod_str);
|
||||||
|
|
||||||
|
float *prbset = NULL;
|
||||||
|
mxArray *p;
|
||||||
|
p = mxGetField(PUSCHCFG, 0, "PRBSet");
|
||||||
|
if (!p) {
|
||||||
|
mexErrMsgTxt("Error field PRBSet not found\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
srslte_ra_ul_alloc_t prb_alloc;
|
||||||
|
bzero(&prb_alloc, sizeof(srslte_ra_ul_alloc_t));
|
||||||
|
prb_alloc.L_prb = mexutils_read_f(p, &prbset);
|
||||||
|
prb_alloc.n_prb[0] = prbset[0];
|
||||||
|
prb_alloc.n_prb[1] = prbset[0];
|
||||||
|
free(prbset);
|
||||||
|
|
||||||
|
mexPrintf("L_prb: %d, n_prb: %d\n", prb_alloc.L_prb, prb_alloc.n_prb[2*sf_idx]);
|
||||||
|
|
||||||
|
uint8_t *trblkin = NULL;
|
||||||
|
mcs.tbs = mexutils_read_uint8(TRBLKIN, &trblkin);
|
||||||
|
|
||||||
|
srslte_harq_t harq_process;
|
||||||
|
if (srslte_harq_init(&harq_process, cell)) {
|
||||||
|
mexErrMsgTxt("Error initiating HARQ process\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (srslte_harq_setup_ul(&harq_process, mcs, 0, sf_idx, &prb_alloc)) {
|
||||||
|
mexErrMsgTxt("Error configuring HARQ process\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t nof_re = SRSLTE_NRE*cell.nof_prb*2*SRSLTE_CP_NSYMB(cell.cp);
|
||||||
|
cf_t *sf_symbols = srslte_vec_malloc(sizeof(cf_t) * nof_re);
|
||||||
|
if (!sf_symbols) {
|
||||||
|
mexErrMsgTxt("malloc");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
bzero(sf_symbols, sizeof(cf_t) * nof_re);
|
||||||
|
|
||||||
|
|
||||||
|
srslte_uci_data_t uci_data;
|
||||||
|
bzero(&uci_data, sizeof(srslte_uci_data_t));
|
||||||
|
uci_data.uci_cqi_len = mexutils_read_uint8(CQI, &uci_data.uci_cqi);
|
||||||
|
uint8_t *tmp;
|
||||||
|
uci_data.uci_ri_len = mexutils_read_uint8(RI, &tmp);
|
||||||
|
if (uci_data.uci_ri_len > 0) {
|
||||||
|
uci_data.uci_ri = *tmp;
|
||||||
|
}
|
||||||
|
free(tmp);
|
||||||
|
uci_data.uci_ack_len = mexutils_read_uint8(ACK, &tmp);
|
||||||
|
if (uci_data.uci_ack_len > 0) {
|
||||||
|
uci_data.uci_ack = *tmp;
|
||||||
|
}
|
||||||
|
free(tmp);
|
||||||
|
|
||||||
|
|
||||||
|
if (mexutils_read_uint32_struct(PUSCHCFG, "OffsetCQI", &uci_data.I_offset_cqi)) {
|
||||||
|
uci_data.I_offset_cqi = 7;
|
||||||
|
}
|
||||||
|
if (mexutils_read_uint32_struct(PUSCHCFG, "OffsetRI", &uci_data.I_offset_ri)) {
|
||||||
|
uci_data.I_offset_ri = 2;
|
||||||
|
}
|
||||||
|
if (mexutils_read_uint32_struct(PUSCHCFG, "OffsetACK", &uci_data.I_offset_ack)) {
|
||||||
|
uci_data.I_offset_ack = 0;
|
||||||
|
}
|
||||||
|
mexPrintf("TRBL_len: %d, CQI_len: %d, ACK_len: %d (%d), RI_len: %d (%d)\n", mcs.tbs,
|
||||||
|
uci_data.uci_cqi_len, uci_data.uci_ack_len, uci_data.uci_ack, uci_data.uci_ri_len, uci_data.uci_ri);
|
||||||
|
|
||||||
|
|
||||||
|
mexPrintf("NofRE: %d, NofBits: %d, TBS: %d\n", harq_process.nof_re, harq_process.nof_bits, harq_process.mcs.tbs);
|
||||||
|
int r = srslte_pusch_uci_encode(&pusch, &harq_process, trblkin, uci_data, sf_symbols);
|
||||||
|
if (r < 0) {
|
||||||
|
mexErrMsgTxt("Error encoding PUSCH\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint32_t rv=0;
|
||||||
|
if (mexutils_read_uint32_struct(PUSCHCFG, "RV", &rv)) {
|
||||||
|
mexErrMsgTxt("Field RV not found in pdsch config\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (rv > 0) {
|
||||||
|
if (srslte_harq_setup_ul(&harq_process, mcs, rv, sf_idx, &prb_alloc)) {
|
||||||
|
mexErrMsgTxt("Error configuring HARQ process\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
r = srslte_pusch_uci_encode(&pusch, &harq_process, trblkin, uci_data, sf_symbols);
|
||||||
|
if (r < 0) {
|
||||||
|
mexErrMsgTxt("Error encoding PUSCH\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cf_t *scfdma = srslte_vec_malloc(sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
||||||
|
bzero(scfdma, sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
||||||
|
srslte_ofdm_t fft;
|
||||||
|
srslte_ofdm_tx_init(&fft, SRSLTE_CP_NORM, cell.nof_prb);
|
||||||
|
srslte_ofdm_set_normalize(&fft, true);
|
||||||
|
srslte_ofdm_set_freq_shift(&fft, 0.5);
|
||||||
|
srslte_ofdm_tx_sf(&fft, sf_symbols, scfdma);
|
||||||
|
|
||||||
|
// Matlab toolbox expects further normalization
|
||||||
|
srslte_vec_sc_prod_cfc(scfdma, 1.0/sqrtf(srslte_symbol_sz(cell.nof_prb)), scfdma, SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
||||||
|
|
||||||
|
if (nlhs >= 1) {
|
||||||
|
mexutils_write_cf(scfdma, &plhs[0], SRSLTE_SF_LEN_PRB(cell.nof_prb), 1);
|
||||||
|
}
|
||||||
|
if (nlhs >= 2) {
|
||||||
|
mexutils_write_cf(sf_symbols, &plhs[1], nof_re, 1);
|
||||||
|
}
|
||||||
|
if (nlhs >= 3) {
|
||||||
|
mexutils_write_cf(pusch.z, &plhs[2], harq_process.nof_re, 1);
|
||||||
|
}
|
||||||
|
srslte_pusch_free(&pusch);
|
||||||
|
free(trblkin);
|
||||||
|
free(uci_data.uci_cqi);
|
||||||
|
free(sf_symbols);
|
||||||
|
free(scfdma);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,274 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* \section COPYRIGHT
|
||||||
|
*
|
||||||
|
* Copyright 2013-2014 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 Lesser 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 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 <string.h>
|
||||||
|
#include <strings.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
|
||||||
|
#include "srslte/srslte.h"
|
||||||
|
|
||||||
|
srslte_cell_t cell = {
|
||||||
|
6, // nof_prb
|
||||||
|
1, // nof_ports
|
||||||
|
0, // cell_id
|
||||||
|
SRSLTE_CP_NORM, // cyclic prefix
|
||||||
|
SRSLTE_PHICH_SRSLTE_PHICH_R_1_6, // PHICH resources
|
||||||
|
SRSLTE_PHICH_NORM // PHICH length
|
||||||
|
};
|
||||||
|
|
||||||
|
uint32_t cfi = 2;
|
||||||
|
uint32_t tbs = 0;
|
||||||
|
uint32_t subframe = 1;
|
||||||
|
srslte_mod_t modulation = SRSLTE_MOD_QPSK;
|
||||||
|
uint32_t rv_idx = 0;
|
||||||
|
uint32_t L_prb = 2;
|
||||||
|
uint32_t n_prb = 0;
|
||||||
|
int freq_hop = -1;
|
||||||
|
int riv = -1;
|
||||||
|
|
||||||
|
void usage(char *prog) {
|
||||||
|
printf("Usage: %s [csrnfvmtLNF] -l TBS \n", prog);
|
||||||
|
printf("\t-m modulation (1: BPSK, 2: QPSK, 3: QAM16, 4: QAM64) [Default BPSK]\n");
|
||||||
|
printf("\t-c cell id [Default %d]\n", cell.id);
|
||||||
|
printf("\t-s subframe [Default %d]\n", subframe);
|
||||||
|
printf("\t-L L_prb [Default %d]\n", L_prb);
|
||||||
|
printf("\t-N n_prb [Default %d]\n", n_prb);
|
||||||
|
printf("\t-F frequency hopping [Default %d]\n", freq_hop);
|
||||||
|
printf("\t-R RIV [Default %d]\n", riv);
|
||||||
|
printf("\t-r rv_idx [Default %d]\n", rv_idx);
|
||||||
|
printf("\t-f cfi [Default %d]\n", cfi);
|
||||||
|
printf("\t-n cell.nof_prb [Default %d]\n", cell.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, "lcnfvmtsrLNFR")) != -1) {
|
||||||
|
switch(opt) {
|
||||||
|
case 'm':
|
||||||
|
switch(atoi(argv[optind])) {
|
||||||
|
case 1:
|
||||||
|
modulation = SRSLTE_MOD_BPSK;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
modulation = SRSLTE_MOD_QPSK;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
modulation = SRSLTE_MOD_16QAM;
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
modulation = SRSLTE_MOD_64QAM;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, "Invalid modulation %d. Possible values: "
|
||||||
|
"(1: BPSK, 2: QPSK, 3: QAM16, 4: QAM64)\n", atoi(argv[optind]));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 's':
|
||||||
|
subframe = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'L':
|
||||||
|
L_prb = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'N':
|
||||||
|
n_prb = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'R':
|
||||||
|
riv = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'F':
|
||||||
|
freq_hop = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'r':
|
||||||
|
rv_idx = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'l':
|
||||||
|
tbs = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'n':
|
||||||
|
cell.nof_prb = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'c':
|
||||||
|
cell.id = atoi(argv[optind]);
|
||||||
|
break;
|
||||||
|
case 'v':
|
||||||
|
srslte_verbose++;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
usage(argv[0]);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
srslte_pusch_t pusch;
|
||||||
|
uint8_t *data = NULL;
|
||||||
|
cf_t *sf_symbols = NULL;
|
||||||
|
int ret = -1;
|
||||||
|
struct timeval t[3];
|
||||||
|
srslte_ra_mcs_t mcs;
|
||||||
|
srslte_ra_ul_alloc_t prb_alloc;
|
||||||
|
srslte_harq_t harq_process;
|
||||||
|
|
||||||
|
parse_args(argc,argv);
|
||||||
|
|
||||||
|
mcs.tbs = tbs;
|
||||||
|
mcs.mod = modulation;
|
||||||
|
|
||||||
|
bzero(&prb_alloc, sizeof(srslte_ra_ul_alloc_t));
|
||||||
|
|
||||||
|
if (srslte_pusch_init(&pusch, cell)) {
|
||||||
|
fprintf(stderr, "Error creating PDSCH object\n");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
srslte_pusch_set_rnti(&pusch, 1234);
|
||||||
|
|
||||||
|
if (srslte_harq_init(&harq_process, cell)) {
|
||||||
|
fprintf(stderr, "Error initiating HARQ process\n");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("Encoding rv_idx=%d\n",rv_idx);
|
||||||
|
|
||||||
|
uint8_t tmp[20];
|
||||||
|
for (uint32_t i=0;i<20;i++) {
|
||||||
|
tmp[i] = 1;
|
||||||
|
}
|
||||||
|
srslte_uci_data_t uci_data;
|
||||||
|
bzero(&uci_data, sizeof(srslte_uci_data_t));
|
||||||
|
uci_data.I_offset_cqi = 7;
|
||||||
|
uci_data.I_offset_ri = 2;
|
||||||
|
uci_data.I_offset_ack = 0;
|
||||||
|
|
||||||
|
uci_data.uci_cqi_len = 0;
|
||||||
|
uci_data.uci_ri_len = 0;
|
||||||
|
uci_data.uci_ack_len = 0;
|
||||||
|
|
||||||
|
uci_data.uci_cqi = tmp;
|
||||||
|
uci_data.uci_ri = 1;
|
||||||
|
uci_data.uci_ack = 1;
|
||||||
|
|
||||||
|
srslte_ra_pusch_t dci;
|
||||||
|
dci.freq_hop_fl = freq_hop;
|
||||||
|
if (riv < 0) {
|
||||||
|
dci.type2_alloc.L_crb = L_prb;
|
||||||
|
dci.type2_alloc.RB_start = n_prb;
|
||||||
|
} else {
|
||||||
|
srslte_ra_type2_from_riv((uint32_t) riv, &dci.type2_alloc.L_crb, &dci.type2_alloc.RB_start, cell.nof_prb, cell.nof_prb);
|
||||||
|
}
|
||||||
|
srslte_ra_ul_alloc(&prb_alloc, &dci, 0, cell.nof_prb);
|
||||||
|
|
||||||
|
if (srslte_harq_setup_ul(&harq_process, mcs, 0, subframe, &prb_alloc)) {
|
||||||
|
fprintf(stderr, "Error configuring HARQ process\n");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
srslte_pusch_hopping_cfg_t ul_hopping;
|
||||||
|
ul_hopping.n_sb = 1;
|
||||||
|
ul_hopping.hopping_offset = 0;
|
||||||
|
ul_hopping.hop_mode = SRSLTE_PUSCH_HOP_MODE_INTER_SF;
|
||||||
|
ul_hopping.current_tx_nb = 0;
|
||||||
|
|
||||||
|
srslte_pusch_set_hopping_cfg(&pusch, &ul_hopping);
|
||||||
|
|
||||||
|
uint32_t nof_re = SRSLTE_NRE*cell.nof_prb*2*SRSLTE_CP_NSYMB(cell.cp);
|
||||||
|
sf_symbols = srslte_vec_malloc(sizeof(cf_t) * nof_re);
|
||||||
|
if (!sf_symbols) {
|
||||||
|
perror("malloc");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
|
||||||
|
data = malloc(sizeof(uint8_t) * mcs.tbs);
|
||||||
|
if (!data) {
|
||||||
|
perror("malloc");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (uint32_t i=0;i<mcs.tbs;i++) {
|
||||||
|
data[i] = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (srslte_pusch_uci_encode(&pusch, &harq_process, data, uci_data, sf_symbols)) {
|
||||||
|
fprintf(stderr, "Error encoding TB\n");
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rv_idx > 0) {
|
||||||
|
if (srslte_harq_setup_ul(&harq_process, mcs, rv_idx, subframe, &prb_alloc)) {
|
||||||
|
fprintf(stderr, "Error configuring HARQ process\n");
|
||||||
|
goto quit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (srslte_pusch_uci_encode(&pusch, &harq_process, data, uci_data, sf_symbols)) {
|
||||||
|
fprintf(stderr, "Error encoding TB\n");
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
cf_t *scfdma = srslte_vec_malloc(sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
||||||
|
bzero(scfdma, sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
|
||||||
|
srslte_ofdm_t fft;
|
||||||
|
srslte_ofdm_tx_init(&fft, SRSLTE_CP_NORM, cell.nof_prb);
|
||||||
|
srslte_ofdm_set_freq_shift(&fft, 0.5);
|
||||||
|
srslte_ofdm_tx_sf(&fft, sf_symbols, scfdma);
|
||||||
|
|
||||||
|
gettimeofday(&t[1], NULL);
|
||||||
|
//int r = srslte_pusch_decode(&pusch, slot_symbols[0], ce, 0, data, subframe, &harq_process, rv);
|
||||||
|
int r = 0;
|
||||||
|
gettimeofday(&t[2], NULL);
|
||||||
|
get_time_interval(t);
|
||||||
|
if (r) {
|
||||||
|
printf("Error decoding\n");
|
||||||
|
ret = -1;
|
||||||
|
goto quit;
|
||||||
|
} else {
|
||||||
|
printf("DECODED OK in %d:%d (%.2f Mbps)\n", (int) t[0].tv_sec, (int) t[0].tv_usec, (float) mcs.tbs/t[0].tv_usec);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
quit:
|
||||||
|
srslte_pusch_free(&pusch);
|
||||||
|
srslte_harq_free(&harq_process);
|
||||||
|
|
||||||
|
if (sf_symbols) {
|
||||||
|
free(sf_symbols);
|
||||||
|
}
|
||||||
|
if (data) {
|
||||||
|
free(data);
|
||||||
|
}
|
||||||
|
if (ret) {
|
||||||
|
printf("Error\n");
|
||||||
|
} else {
|
||||||
|
printf("Ok\n");
|
||||||
|
}
|
||||||
|
exit(ret);
|
||||||
|
}
|
Loading…
Reference in New Issue