-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGlobal_Parameters.m
30 lines (30 loc) · 1.01 KB
/
Global_Parameters.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%% Parameters
CenterFrequency = 2.4e9; % 2.4 GHz
%% Create RMC 1
rmc = lteRMCDL('R.7'); % Base RMC configuration, 10 MHz bandwidth
% Customize RMC parameters
rmc.NCellID = 88; % Cell identity
rmc.NFrame = 700; % Initial frame number
rmc.TotSubframes = 10; % 10 subframes per frame
rmc.CellRefP = 1; % Configure number of cell reference ports
rmc.PDSCH.RVSeq = 0;
% Fill subframe 5 with dummy data
rmc.OCNGPDSCHEnable = 'On';
rmc.OCNGPDCCHEnable = 'On';
rmc.SerialCat = true;
rmc.SamplingRate = 15.36e6;
rmc.Nfft = 1024;
%% Create RMC 2
rmc2 = lteRMCDL('R.7'); % Base RMC configuration, 10 MHz bandwidth
% Customize RMC parameters
rmc2.NCellID = 0; % Cell identity
rmc2.NFrame = 700; % Initial frame number
rmc2.TotSubframes = 10; % 10 subframes per frame
rmc2.CellRefP = 1; % Configure number of cell reference ports
rmc2.PDSCH.RVSeq = 0;
% Fill subframe 5 with dummy data
rmc2.OCNGPDSCHEnable = 'On';
rmc2.OCNGPDCCHEnable = 'On';
rmc2.SerialCat = true;
rmc2.SamplingRate = 15.36e6;
rmc2.Nfft = 1024;