mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.9 KiB
Matlab
68 lines
2.9 KiB
Matlab
ueConfig=struct('NCellID',1,'NULRB',25,'RNTI',77,'CyclicPrefixUL','Normal','NTxAnts',1,'Shortened',1);
|
|
puschConfig=struct('NLayers',1,'OrthCover','Off','PRBSet',22,'Shortened',0);
|
|
|
|
addpath('../../build/srslte/lib/phch/test')
|
|
|
|
TBs=[111 336];
|
|
cqilen=0;
|
|
rvs=[0 2];
|
|
mods={'16QAM'};
|
|
betas=0;
|
|
subf=[0:9];
|
|
|
|
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)
|
|
for s=1:length(subf)
|
|
fprintf('Subf=%d, RV=%d\n', subf(s), rvs(r));
|
|
trblkin=randi(2,TBs(i),1)-1;
|
|
ueConfig.NSubframe=subf(s);
|
|
puschConfig.Modulation = mods{m};
|
|
puschConfig.RV = rvs(r);
|
|
puschConfig.BetaCQI = betas(bcqi);
|
|
puschConfig.BetaRI = betas(bri);
|
|
puschConfig.BetaACK = 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);
|
|
cw_mat=ltePUSCH(ueConfig,puschConfig,cw);
|
|
%drs=ltePUSCHDRS(ueConfig,puschConfig);
|
|
idx=ltePUSCHIndices(ueConfig,puschConfig);
|
|
%drs_idx=ltePUSCHDRSIndices(ueConfig,puschConfig);
|
|
subframe_mat = lteULResourceGrid(ueConfig);
|
|
subframe_mat(idx)=cw_mat;
|
|
%subframe_mat(drs_idx)=drs;
|
|
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=max(abs(waveform-waveform_lib));
|
|
if (err > 10^-5)
|
|
disp(err)
|
|
error('Error!');
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|