ue detection using downlink signals -凯发k8网页登录
this example shows how lte toolbox™ can be used to detect the presence of ues associated with an enodeb. this is achieved by searching a downlink signal for dci messages and establishing the set of unique identifiers (c-rntis) in use.
introduction
in lte, the physical downlink control channel (pdcch) carries control information in the form of downlink control information (dci) messages. the dci messages transmit uplink or downlink scheduling information from the enodeb to destination ues, in order that the ues can identify the resources required to receive on the physical downlink shared channel (pdsch) or to transmit on the physical uplink shared channel (pusch). each ue is assigned an identifier known as a c-rnti (cell radio network temporary identifier). the c-rnti is used to scramble the crc bits of the dci message for that ue, and also to determine the location of the dci message within the pdcch. for more information, see the example.
the aim of this example is to decode the pdcch and look for candidate dci messages. the c-rnti is then obtained from valid messages, giving an indication of the number of ues being addressed, and their pattern over time. note that in this example all detected rntis are returned, not just the rntis in the c-rnti range defined in ts 36.321 table 7.1-1 [ 1 ]. keeping these other rntis allows this example to be used to identify occurrences of dci messages associated with system information (si-rnti) or paging (p-rnti).
waveform under analysis
in this example, the waveform under analysis is stored in the file uedetectionwaveform.mat as the variable rxwaveform
. it is assumed that the bandwidth, duplexing mode, cyclic prefix length, cell identity, number of cell-specific reference signal ports and phich configuration are all known, and the corresponding enodeb configuration variable enb
is also loaded from the file. it is also possible to use a waveform whose enodeb configuration is not known, in which case the enodeb configuration would need to be decoded as shown in the cell search, mib and sib1 recovery example.
load uedetectionwaveform.mat;
rxwaveform = double(rxwaveform) / 32768;
synchronization
frequency offset estimation and correction and timing synchronization are performed.
% perform frequency offset estimation and correction foffset = ltefrequencyoffset(enb,rxwaveform); rxwaveform = ltefrequencycorrect(enb,rxwaveform,foffset); % perform timing synchronization to the first whole subframe of the % waveform toffset = ltedlframeoffset(enb,rxwaveform); ofdminfo = lteofdminfo(enb); sflength = ofdminfo.samplingrate * 1e-3; offsetsubframes = floor(toffset / sflength); toffset = toffset - (offsetsubframes * sflength); rxwaveform = rxwaveform(1 toffset:end,:); enb.nsubframe = mod(-offsetsubframes,10);
ofdm demodulation
the i/q waveform rxwaveform
is ofdm demodulated to produce the received resource grid rxgrid
.
rxgrid = lteofdmdemodulate(enb,rxwaveform);
channel estimator configuration
channel estimation and equalization will be needed for processing an i/q waveform captured off-the-air, so the channel estimator parameters are configured.
cec.pilotaverage = 'userdefined'; % type of pilot averaging cec.freqwindow = 13; % frequency window size cec.timewindow = 9; % time window size cec.interptype = 'cubic'; % 2d interpolation type cec.interpwindow = 'centered'; % interpolation window type cec.interpwinsize = 1; % interpolation window size
ue detection
the downlink waveform under analysis may carry information for a number of ues. this section attempts to find their rntis. the approach applied here uses the fact that for a valid dci message, the crc bits are masked with the rnti. therefore, assuming there are no errors (crc = 0), the last 16 decoded bits correspond to the rnti. this approach is described in section 5 of [ 2 ].
this example implements the following algorithm:
consider all pdcch formats in the ue-specific search space (0...3)
for each pdcch format, calculate all possible candidates in the control region that may carry a dci message.
for each candidate, attempt to decode a dci message (considering all possible dci formats with unique dci message length).
the following steps are performed to check if the decoded bits constitute a valid dci message (a graphical representation of the algorithm is also provided below):
assume there are no errors in the transmission, i.e. assume crc = 0. this means the last 16 decoded bits constitute the c-rnti.
separate the dci message from the 16 c-rnti bits.
calculate new crc bits and mask them with the c-rnti.
re-encode the dci message.
compare the re-encoded message with the original coded dci candidate.
lack of errors in the comparison in this last step means a valid dci message and c-rnti (ue identifier) have been detected. in some cases, especially with waveforms captured off-the air, some errors may occur in the dci decoding process. therefore, this example uses a threshold (maxerrors
) to control how many errors are allowed in the comparison between the received candidate bits and the re-encoded candidate bits.
two post-processing steps are applied to the list of detected ues in order to reduce the number of false detections:
dci messages having received candidate symbols whose power (in db) is less than the threshold
minpdcchpower
are excluded. without this step, received candidate bits consisting solely of noise (even at a low power) can trigger false detections.in the case of overlapping results (i.e. where the candidate indices of one result are a subset of another), the result with the lowest number of bit errors will be selected.
note that for completeness, the common search space is also searched for dci format 1a and 1c messages allocating resources for system information, paging or random access response messages.
% maximum number of bit errors allowed to consider a detection as valid maxerrors = 2; % minimum pdcch power in db (relative to the cell-specific reference signal % used for channel estimation) to consider a detection as valid minpdcchpower = -5.0; % initialize results table results = table; % get dci formats and lengths for dci messages in the common search space pdcchcommon = struct('searchspace','common'); pdcchcommon.controlchanneltype = 'pdcch'; cif = 'off'; % enable or disable carrier indicator field pdcchcommon.enablecarrierindication = cif; [dciinfocommon,pdcchcommon] = getuniquedcilengths(enb,pdcchcommon); % get dci formats and lengths for dci messages in the ue-specific search % space. the length of a dci message of a given format may be affected by % various ue-specific higher-layer parameters so the set of different % unique lengths across those parameters is recorded, along with the % corresponding parameter combinations pdcchuespecific = struct('searchspace','uespecific'); pdcchuespecific.controlchanneltype = 'pdcch'; pdcchuespecific.enablecarrierindication = cif; [dciinfouespecific,pdcchuespecific] = getuniquedcilengths(enb,pdcchuespecific); % establish the number of subframes in the waveform griddims = lteresourcegridsize(enb); l = griddims(2); nsubframes = floor(size(rxgrid,2) / l); % for each subframe in the waveform, attempt to decode the pdcch startsubframe = enb.nsubframe; cfis = zeros(1,nsubframes); for i = 0:nsubframes-1 % extract the current subframe rxsubframe = rxgrid(:,(i*l) (1:l),:); % perform channel estimation [hest,nest] = ltedlchannelestimate(enb,cec,rxsubframe); % if the current subframe contains the first occurrence of the mib in % the waveform, decode the mib to establish the frame number if (enb.nsubframe==0 && i<10) startframe = decodemib(enb,rxsubframe,hest,nest,i); end % get pcfich indices, extract received pcfich symbols and corresponding % channel estimate, demodulate pcfich, decode and record cfi pcfichindices = ltepcfichindices(enb); [pcfichrx,pcfichhest] = lteextractresources(pcfichindices,rxsubframe,hest); pcfichbits = ltepcfichdecode(enb,pcfichrx,pcfichhest,nest); enb.cfi = ltecfidecode(pcfichbits); cfis(i 1) = enb.cfi; % get pdcch indices pdcchindices = ltepdcchindices(enb); % extract received pdcch symbols and corresponding channel estimate [pdcchrx,pdcchhest] = lteextractresources(pdcchindices,rxsubframe,hest); % perform pdcch demodulation to obtain the received pdcch bits, which % may contain encoded dci messages for one or more users [pdcchbits,pdcchsymbols] = ltepdcchdecode(enb,pdcchrx,pdcchhest,nest); % initialize array of pdcch format / candidate / dci format % combinations, which represent possible ues (i.e. possible locations % for dci messages providing a downlink or uplink grant for a ue) possibleues = []; % pdcch format for ue-specific search space can be 0, 1, 2, or 3 for pdcchformat = 0:3 ue = struct(); % get all pdcch candidate indices and the number of candidates m % for the current pdcch format ue.pdcchformat = pdcchformat; candidates = getpdcchcandidates(enb,ue); m = size(candidates,1); % for each candidate for m = 1:m % record pdcch candidate indices ue.candidate = candidates(m,:); % for each dci format in the ue-specific search space dciformats = fieldnames(dciinfouespecific); for dciformatidx = 1:length(dciformats) % record dci format ue.dciformat = dciformats{dciformatidx}; % record this pdcch format / candidate / dci format % combination as a possible "ue". for dci formats that have % different lengths across the ue-specific higher-layer % parameters, each length is recorded as a different % possible ue dcilengths = dciinfouespecific.(ue.dciformat); for dcilengthidx = 1:length(dcilengths) ue.dcilength = dcilengths(dcilengthidx); ue.pdcch = pdcchuespecific.(ue.dciformat)(dcilengthidx); possibleues = [possibleues ue]; %#okend end % for pdcch formats 2 or 3, record the possibility of a dci % message in the common search space in this candidate location % with format 1a or 1c. such dci messages correspond to system % information, paging, or random access response message rather % than uplink or downlink grants for a ue, but are searched for % in this example for completeness if (any(pdcchformat==[2 3])) for dciformat = {'format1a' 'format1c'} ue.dciformat = dciformat{1}; ue.dcilength = dciinfocommon.(ue.dciformat); ue.pdcch = pdcchcommon.(ue.dciformat); possibleues = [possibleues ue]; %#ok end end end end % for each possible ue for ue = possibleues % get the received candidate bits from the received pdcch bits (for % dci decoding) bitidx = ue.candidate; candidatebits = pdcchbits(bitidx(1):bitidx(2)); % get the received candidate symbols from the received pdcch % symbols (for pdcch power estimation). the modulation order qm = 2 % is used to convert candidate bit indices into candidate symbol % indices (qpsk modulation is always used for pdcch) qm = 2; symidx = [((bitidx(1) - 1) / qm) 1 bitidx(2)/qm]; candidatesymbols = pdcchsymbols(symidx(1):symidx(2)); % decode the received candidate bits and get the rnti. assuming a % crc pass (crc = 0), the 2nd output from ltedcidecode will % correspond to the rnti [dcimessagebits,rnti] = ltedcidecode(ue.dcilength,candidatebits); % re-encode the decoded dci message bits (using the detected rnti) % and establish the number of bit errors between the re-encoded % candidate bits and received candidate bits ue.rnti = rnti; reencodedcandidatebits = ltedciencode(ue,dcimessagebits); numerrors = sum(int8(candidatebits > 0) ~= reencodedcandidatebits); % if the number of bit errors is greater than maxerrors, continue % to the next possible ue (the rest of the loop body here is not % executed) if (numerrors > maxerrors) continue; end % create dci message structure from message bit payload. this is % performed because for some dci formats (e.g. format 0 versus % format 1a), the true dci format amongst dci formats with % the same length can be determined by the value of a message bit dci = ltedci(enb,ue.pdcch,dcimessagebits); % create table entry for the current dci message result = struct(); result.subframe = i; result.detectedrnti = string(dec2hex(ue.rnti,4)); result.numerrors = numerrors; result.dciformat = string(dci.dciformat); result.pdcchformat = ue.pdcchformat; result.candidate = ue.candidate; result.pdcchpower = round(10*log10(var(candidatesymbols)),2); result.dci = {dci}; result = struct2table(result); % check if a dci message has previously been successfully decoded % in this subframe with the same rnti, dci format and starting % candidate location as the current dci message (but with a % different pdcch format) if (~isempty(results)) match = (results.subframe == result.subframe); match = match & (results.detectedrnti == result.detectedrnti); match = match & strcmpi(results.dciformat,result.dciformat); match = match & (results.candidate(:,1) == result.candidate(1)); match = find(match~=0); else match = []; end % if a dci message satisfies the criteria above, it must have been % for a smaller pdcch format and therefore represents successful % decoding of part of the current message, i.e. decoding a subset % of the candidate control channel elements (cces). therefore the % previous result can be replaced with the current result. note % that for larger pdcch formats the number of bit errors will tend % to be bigger as there are more candidate bits, so at low snrs the % detected pdcch format here may be lower than the true pdcch % format (i.e. the number of errors in the bits for the true pdcch % format exceeds maxerrors) if (isempty(match)) results = [results; result]; %#ok else results(match,:) = result; end end % update the subframe number enb.nsubframe = mod(enb.nsubframe 1,10); end % remove results whose estimated pdcch power (in db) is lower than the % minimum power threshold. without this step, received candidate symbols % consisting solely of noise (even at a low power) can trigger false % detections if (~isempty(results)) results(results.pdcchpower < minpdcchpower,:) = []; end % check if results are empty if (isempty(results)) disp('no rntis found.'); return; end % in any given subframe, in the case of overlapping results (i.e. where the % candidate indices of one result are a subset of another), the result with % the lowest number of bit errors will be selected overlapping = []; for i = unique(results.subframe).' % find result rows which correspond to the current subframe and extract % those results sf = find(results.subframe == i).'; % for each pair of results in this subframe for a = sf for b = sf ca = results{a,'candidate'}; cb = results{b,'candidate'}; % if the first result's candidate indices are a subset of the % second result's candidate indices if (ca(1)>=cb(1) && ca(2)<=cb(2)) % if the first result has more errors if (results{a,'numerrors'}>results{b,'numerrors'}) % mark the first result in the pair as overlapping % (i.e. mark it for removal) overlapping = [overlapping a]; %#ok end end end end end % remove overlapping results results(overlapping,:) = []; % add a label for each row of the results table results.properties.rownames = strsplit(num2str(1:height(results)));
display results table
the table of detected rntis and other information associated with the detected dci messages is displayed. each row of this table includes:
subframe
: the subframe number (relative to the start of the received waveform) in which the detected rnti occurs.detectedrnti
: the detected rnti.numerrors
: the number of bit errors between the re-encoded candidate bits and received candidate bits (less than or equal tomaxerrors
).dciformat
: the dci format of the dci message. note that during the ue detection process, only dci formats with unique lengths were used, as only the length of the output dci message influences the decoding process (specifically, the rate matching prior to convolutional decoding). within the lte system, multiple dci messages can have the same length for the same enodeb configuration. this ambiguity is resolved in normal system operation by each ue being assigned a transmission mode (tm). ts 36.213 table 7.1-5 [ 3 ] shows which dci formats are applicable for a given tm, and all formats for a given tm will have unique lengths. because this example operates without knowledge of the ues and their tms, the true dci format detected for the ue may not match the dci format here, but the length will match. the functionltedciinfo
can be used to establish which other dci formats have the same length as the dci format here.pdcchformat
: the pdcch format of the received candidate bits for the dci message. for more information about pdcch formats, see the example.candidate
: the inclusive [begin,end] bit indices (1-based) of the pdcch candidate location for the dci message i.e. the location of the received candidate bits in the set of overall received pdcch bits. the overall set of pdcch search space candidates for a given enodeb configuration, pdcch format and rnti can be found using theltepdcchspace
function.pdcchpower
: the power of the received candidate symbols (in db) associated with this dci message.dci
: the decoded dci message structure, assuming that the dci format noted above is the true dci format for the message.
disp(results);
subframe detectedrnti numerrors dciformat pdcchformat candidate pdcchpower dci ________ ____________ _________ __________ ___________ ___________ __________ ____________ 1 0 "9397" 1 "format0" 1 1 144 0.32 {1x1 struct} 2 0 "f24a" 0 "format0" 2 289 576 3.24 {1x1 struct} 3 0 "717a" 0 "format2a" 2 577 864 3.36 {1x1 struct} 4 1 "717a" 0 "format2a" 2 1 288 2.99 {1x1 struct} 5 1 "717a" 0 "format0" 2 289 576 3.02 {1x1 struct} 6 1 "9397" 0 "format0" 1 577 720 -0.22 {1x1 struct} 7 2 "717a" 0 "format2a" 2 1 288 3.19 {1x1 struct} 8 2 "9397" 0 "format0" 1 289 432 0.52 {1x1 struct} 9 3 "4c87" 0 "format2a" 2 1 288 3.16 {1x1 struct} 10 3 "9397" 0 "format0" 1 289 432 -0.11 {1x1 struct} 11 3 "96c1" 0 "format2a" 1 577 720 3.27 {1x1 struct} 12 4 "717a" 0 "format0" 2 1 288 3.41 {1x1 struct} 13 4 "9397" 2 "format0" 0 433 504 1.07 {1x1 struct} 14 4 "717a" 1 "format2a" 1 577 720 3.57 {1x1 struct} 15 5 "9397" 0 "format0" 0 1 72 2.42 {1x1 struct} 16 5 "96c1" 1 "format0" 0 145 216 0.6 {1x1 struct} 17 5 "6c27" 2 "format2c" 0 217 288 1.14 {1x1 struct} 18 5 "717a" 0 "format0" 1 289 432 5.68 {1x1 struct} 19 5 "4c87" 2 "format2a" 0 577 648 1.66 {1x1 struct} 20 6 "717a" 0 "format2a" 2 1 288 2.95 {1x1 struct} 21 6 "9397" 0 "format0" 1 289 432 0.27 {1x1 struct} 22 6 "077b" 0 "format0" 1 433 576 6.17 {1x1 struct} 23 7 "ffff" 0 "format1a" 2 1 288 0.14 {1x1 struct} 24 7 "9397" 1 "format0" 1 289 432 1.38 {1x1 struct} 25 7 "4c87" 0 "format2a" 1 577 720 6.21 {1x1 struct} 26 8 "4c87" 0 "format2a" 2 1 288 3.03 {1x1 struct} 27 8 "717a" 0 "format2a" 2 577 864 3.05 {1x1 struct} 28 9 "717a" 0 "format2a" 2 577 864 3.05 {1x1 struct} 29 10 "4c87" 0 "format2a" 2 1 288 3.11 {1x1 struct} 30 10 "f24a" 0 "format0" 2 289 576 3.25 {1x1 struct} 31 10 "9397" 0 "format2a" 1 721 864 2.98 {1x1 struct} 32 11 "4c87" 0 "format2a" 2 1 288 2.27 {1x1 struct} 33 11 "717a" 0 "format0" 2 289 576 2.37 {1x1 struct} 34 11 "f24a" 0 "format2a" 2 577 864 2.38 {1x1 struct} 35 12 "ffff" 2 "format1a" 1 1 144 0.7 {1x1 struct} 36 12 "4c87" 0 "format2a" 2 865 1152 3.85 {1x1 struct} 37 14 "717a" 2 "format0" 1 1 144 2.64 {1x1 struct} 38 14 "b073" 2 "format2" 0 145 216 3.01 {1x1 struct} 39 14 "717a" 0 "format2a" 2 577 864 3.58 {1x1 struct}
plot detected rntis
a plot is produced showing the detected rntis versus subframe number. the received downlink resource grid is displayed and the rntis are used to label the pdsch resources signaled by the corresponding dci messages. an empty uplink resource grid is also displayed and the pusch resources signaled by any dci format 0 or format 4 messages are displayed and are labeled with the corresponding rntis. a question mark appears after any rnti for which the number of bit errors between the re-encoded candidate bits and received candidate bits, numerrors
, is greater than zero (and less than or equal to maxerrors
). the system frame numbers (sfns) used here use integers to represent the sfn and decimals (tenths) to represent the subframe within the sfn.
enb.nframe = startframe; enb.nsubframe = startsubframe; enb.cfi = cfis; summary = hplotdetectedrntis(results,enb,rxgrid);
display summary of detected pdsch or pusch resource allocations
finally, a summary of the detected pdsch or pusch resource allocations is displayed. for each detected dci message the following is displayed:
system frame number (sfn)
rnti
number of errors
dci format (and associated link direction)
allocated prbs
an estimate of the received power in the allocated prbs
note that because no uplink resource grid is present, the power estimated for uplink dci messages will be -inf. note that if a summary per rnti is required, the summary table can easily be sorted to group results for the same rnti using sortrows(summary,'rnti')
.
disp(summary);
sfn rnti numerrors dciformat linkdirection prbset power _____ ______ _________ __________ _____________ _______________________________________ _____ 833.3 "9397" 1 "format0" "uplink" "[7 8]" -inf 833.3 "f24a" 0 "format0" "uplink" "[9...23]" -inf 833.3 "717a" 0 "format2a" "downlink" "[0...24]" 15.98 833.4 "717a" 0 "format2a" "downlink" "[0...24]" 16.24 833.4 "717a" 0 "format0" "uplink" "[22 23]" -inf 833.4 "9397" 0 "format0" "uplink" "[20 21]" -inf 833.5 "717a" 0 "format2a" "downlink" "[2 3 6 7 10 11 14 15 18 19 22 23]" 15.95 833.5 "9397" 0 "format0" "uplink" "[22 23]" -inf 833.6 "4c87" 0 "format2a" "downlink" "[0 1 4 5 8 9 12 13 16 17 20...24]" 14.9 833.6 "9397" 0 "format0" "uplink" "[22 23]" -inf 833.6 "96c1" 0 "format2a" "downlink" "[2 3 6 7 10 11 14 15 18 19]" 15.38 833.7 "717a" 0 "format0" "uplink" "[16 17]" -inf 833.7 "9397" 2 "format0" "uplink" "[14 15]" -inf 833.7 "717a" 1 "format2a" "downlink" "[0...24]" 13.96 833.8 "9397" 0 "format0" "uplink" "[16 17]" -inf 833.8 "96c1" 1 "format0" "uplink" "[14 15]" -inf 833.8 "6c27" 2 "format2c" "downlink" "[0...3 8 9 12...17 20 21 24]" 13.98 833.8 "717a" 0 "format0" "uplink" "[12 13]" -inf 833.8 "4c87" 2 "format2a" "downlink" "[0...24]" 13.98 833.9 "717a" 0 "format2a" "downlink" "[0...24]" 15.32 833.9 "9397" 0 "format0" "uplink" "[20 21]" -inf 833.9 "077b" 0 "format0" "uplink" "[18 19]" -inf 834 "ffff" 0 "format1a" "downlink" "[0...7]" 17.31 834 "9397" 1 "format0" "uplink" "[20 21]" -inf 834 "4c87" 0 "format2a" "downlink" "[8...24]" 16.71 834.1 "4c87" 0 "format2a" "downlink" "[20 21]" 17.68 834.1 "717a" 0 "format2a" "downlink" "[0...19 22...24]" 18.11 834.2 "717a" 0 "format2a" "downlink" "[0...24]" 18.38 834.3 "4c87" 0 "format2a" "downlink" "[0 1 4...24]" 17.51 834.3 "f24a" 0 "format0" "uplink" "[22 23]" -inf 834.3 "9397" 0 "format2a" "downlink" "[2]" 18.42 834.4 "4c87" 0 "format2a" "downlink" "[0...3 6 7 10 11 14 15 18 19 22...24]" 15.9 834.4 "717a" 0 "format0" "uplink" "[22 23]" -inf 834.4 "f24a" 0 "format2a" "downlink" "[4]" 16.8 834.5 "ffff" 2 "format1a" "downlink" "[0...13]" 14.12 834.5 "4c87" 0 "format2a" "downlink" "[14...24]" 10.18 834.7 "717a" 2 "format0" "uplink" "[16 17]" -inf 834.7 "b073" 2 "format2" "downlink" "[7 11 15 19]" 14.08 834.7 "717a" 0 "format2a" "downlink" "[0...24]" 14.32
observations on detected rntis
the following observations can be made using the results summary and plot:
system information (si): the rnti used for system information (si-rnti) is ffff hex. dci messages associated with system information blocks (sibs) can be seen in sfn = 834.0 (nframe = 834, nsubframe = 0) and sfn = 834.5 (nframe = 834, nsubframe = 5). systeminformationblocktype1 (sib1) occurs in subframe 5 of even frames, so the occurrence in sfn = 834.5 is sib1. other sibs are dynamically scheduled, with the scheduling information being contained in sib1.
rntis occurring in multiple subframes: the rntis 717a and 4c87 occur frequently throughout the waveform, typically with zero errors, so they are likely to correspond to active ues.
the detection process can result in errors due to noise and distortion in the downlink signals. there are two main types of errors, these are described below using examples:
missed detection: observe sfn 834.6. there is energy in pdsch resource blocks 0 to 7. however, no dci message has been detected. rerun the simulation setting
maxerrors=3
. now rnti 4c87 is detected in this region. this rnti is present in other subframes, which means that this is likely to be a genuine ue.false positive: observe the pdsch allocation with rnti b073 in the final subframe of the waveform. it overlaps with pdsch allocation 717a. given that rnti 717a occurs frequently throughout the waveform and that rnti b073 decodes with 2 errors, it is likely that rnti b073 is a "false positive" detection.
appendix
this example uses the helper function:
selected bibliography
3gpp ts 36.321 "medium access control (mac) protocol specification"
kumar, hamed, katabi and li. "lte radio analytics made easy and accessible", sigcomm '14 (2014): 211-222
3gpp ts 36.213 "physical layer procedures"
local functions
this example uses the following local functions:
getuniquedcilengths
: get dci message information for dci formats with unique lengthsdecodemib
: decode the mib to get frame numbergetpdcchcandidates
: get all pdcch candidates
% get dci message information for dci formats with unique lengths, across % all ue-specific higher-layer parameters function [infoout,pdcchout] = getuniquedcilengths(enb,pdcchin) infoout = []; for enablesrsrequest = {'off' 'on'} pdcchin.enablesrsrequest = enablesrsrequest{1}; for enablemultiplecsirequest = {'off' 'on'} pdcchin.enablemultiplecsirequest = enablemultiplecsirequest{1}; for ntxants = [1 2 4] pdcchin.ntxants = ntxants; % get the dci message lengths for all formats, as a % structure info = ltedciinfo(enb,pdcchin); % convert the structure into a cell array of field names % and values formats = fieldnames(info); sizes = struct2cell(info); % remove dci format 3 and 3a as these dci formats are used % for conveying power control commands rather than resource % allocations dci3idx = ismember(formats,{'format3','format3a'}); formats(dci3idx) = []; sizes(dci3idx) = []; % keep only dci format 1a and 1c for the common search % space if (strcmpi(pdcchin.searchspace,'common')) commonidx = ismember(formats,{'format1a','format1c'}); formats = formats(commonidx); sizes = sizes(commonidx); end % find the indices of the unique sizes, the first % occurrence of each unique size will be retained in the % original order [~,idxs] = unique(cat(2,sizes{:}),'stable'); % if the current ue-specific settings yield unique sizes % for any format (compared to all other formats and % ue-specific settings thus far), then record them if (isempty(infoout)) infoout = cell2struct(sizes(idxs),formats(idxs)); pdcchout = cell2struct(repmat({pdcchin},size(idxs)),formats(idxs)); else sizes_out = struct2cell(infoout); sizes_out = cat(2,sizes_out{:}); for i = idxs.' if (~any(sizes_out==sizes{i})) format = formats{i}; infoout.(format) = [infoout.(format) sizes{i}]; pdcchout.(format) = [pdcchout.(format) pdcchin]; end end end end end end end % decode the mib to get the frame number function startframe = decodemib(enb,rxsubframe,hest,nest,i) pbchindices = ltepbchindices(enb); [pbchrx, pbchhest] = lteextractresources(pbchindices,rxsubframe,hest); [~,~,nfmod4,mibbits] = ltepbchdecode(enb,pbchrx,pbchhest,nest); mib = ltemib(mibbits); startframe = double(mib.nframe) nfmod4; if (i>0) startframe = mod(startframe - 1,1024); end end % get all pdcch candidates for a given enodeb configuration and ue % configuration, without having to evaluate all possible rntis function pdcchcandidates = getpdcchcandidates(enb,ue) % pdcch dimensionality information pdcchinfo = ltepdcchinfo(enb); % aggregation level l = 2 ^ ue.pdcchformat; % number of candidates m = floor(double(pdcchinfo.ncce)/l); % 1 cce = 9 regs = 36 res = 72 bits bitspercce = 72; % pdcch candidate indices within pdcch bits (1-based) pdcchcandidates = l*bitspercce*(0:m-1).' [1 l*bitspercce]; end