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.
66 lines
2.3 KiB
Matlab
66 lines
2.3 KiB
Matlab
clear
|
|
ueConfig=struct('NCellID',1,'CyclicPrefixUL','Normal','NTxAnts',1);
|
|
puschConfig=struct('NLayers',1,'OrthCover','Off','PRBSet',0,'Modulation','16QAM','RV',0,'Shortened',0);
|
|
|
|
addpath('../../debug/lte/phy/lib/phch/test')
|
|
|
|
TBs=0:13:222;
|
|
cqilen=0;%[0, 8, 17];
|
|
mods={'QPSK','16QAM','64QAM'};
|
|
rvs=0;%[0, 3];
|
|
betas=0:3:11;
|
|
|
|
|
|
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)
|
|
[mat, info]=lteULSCH(ueConfig,puschConfig,trblkin,ones(1,cqilen(c)),ri_bit,ack_bit,[]);
|
|
mat(mat==-2)=2;
|
|
mat(mat==-1)=3;
|
|
[lib]=srslte_ulsch_encode(ueConfig,puschConfig,trblkin,ones(1,cqilen(c)),ri_bit,ack_bit);
|
|
err=sum(abs(double(mat)-double(lib)));
|
|
if (err > 0)
|
|
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,lib(n),n,mat(n))
|
|
end
|