1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
2 | % wl_example_mimo_ofdm_txrx.m |
---|
3 | % 2x2 MIMO OFDM Example |
---|
4 | % A detailed write-up of this example is available on the wiki: |
---|
5 | % http://warpproject.org/trac/wiki/WARPLab/Examples/MIMO_OFDM |
---|
6 | % |
---|
7 | % Copyright (c) 2015 Mango Communications - All Rights Reserved |
---|
8 | % Distributed under the WARP License (http://warpproject.org/license) |
---|
9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
10 | clear |
---|
11 | |
---|
12 | % Params: |
---|
13 | USE_WARPLAB_TXRX = 1; % Enable WARPLab-in-the-loop (otherwise sim-only) |
---|
14 | WRITE_PNG_FILES = 0; % Enable writing plots to PNG |
---|
15 | CHANNEL = 11; % Channel to tune Tx and Rx radios |
---|
16 | |
---|
17 | % Waveform params |
---|
18 | N_OFDM_SYMS = 1000; % Number of OFDM symbols (must be even valued) |
---|
19 | MOD_ORDER = 16; % Modulation order (2/4/16 = BSPK/QPSK/16-QAM) |
---|
20 | TX_SCALE = 1.0; % Scale for Tx waveform ([0:1]) |
---|
21 | INTERP_RATE = 2; % Interpolation rate (must be 2) |
---|
22 | TX_SPATIAL_STREAM_SHIFT = 3; % Number of samples to shift the transmission from RFB |
---|
23 | |
---|
24 | % OFDM params |
---|
25 | SC_IND_PILOTS = [8 22 44 58]; % Pilot subcarrier indices |
---|
26 | SC_IND_DATA = [2:7 9:21 23:27 39:43 45:57 59:64]; % Data subcarrier indices |
---|
27 | N_SC = 64; % Number of subcarriers |
---|
28 | CP_LEN = 16; % Cyclic prefix length |
---|
29 | N_DATA_SYMS = N_OFDM_SYMS * length(SC_IND_DATA); % Number of data symbols (one per data-bearing subcarrier per OFDM symbol) |
---|
30 | |
---|
31 | % Rx processing params |
---|
32 | FFT_OFFSET = 4; % Number of CP samples to use in FFT (on average) |
---|
33 | LTS_CORR_THRESH = 0.8; % Normalized threshold for LTS correlation |
---|
34 | DO_APPLY_CFO_CORRECTION = 1; % Enable CFO estimation/correction |
---|
35 | DO_APPLY_PHASE_ERR_CORRECTION = 1; % Enable Residual CFO estimation/correction |
---|
36 | DO_APPLY_SFO_CORRECTION = 1; % Enable SFO estimation/correction |
---|
37 | DECIMATE_RATE = INTERP_RATE; |
---|
38 | |
---|
39 | % WARPLab experiment params |
---|
40 | USE_AGC = true; % Use the AGC if running on WARP hardware |
---|
41 | MAX_TX_LEN = 2^19; % Maximum number of samples to use for this experiment |
---|
42 | SAMP_PADDING = 100; % Extra samples to receive to ensure both start and end of waveform visible |
---|
43 | |
---|
44 | |
---|
45 | if(USE_WARPLAB_TXRX) |
---|
46 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
47 | % Set up the WARPLab experiment |
---|
48 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
49 | |
---|
50 | NUMNODES = 2; |
---|
51 | |
---|
52 | % Create a vector of node objects |
---|
53 | nodes = wl_initNodes(NUMNODES); |
---|
54 | node_tx = nodes(1); |
---|
55 | node_rx = nodes(2); |
---|
56 | |
---|
57 | % Create a UDP broadcast trigger and tell each node to be ready for it |
---|
58 | eth_trig = wl_trigger_eth_udp_broadcast; |
---|
59 | wl_triggerManagerCmd(nodes, 'add_ethernet_trigger', [eth_trig]); |
---|
60 | |
---|
61 | % Read Trigger IDs into workspace |
---|
62 | trig_in_ids = wl_getTriggerInputIDs(nodes(1)); |
---|
63 | trig_out_ids = wl_getTriggerOutputIDs(nodes(1)); |
---|
64 | |
---|
65 | % For both nodes, we will allow Ethernet to trigger the buffer baseband and the AGC |
---|
66 | wl_triggerManagerCmd(nodes, 'output_config_input_selection', [trig_out_ids.BASEBAND, trig_out_ids.AGC], [trig_in_ids.ETH_A]); |
---|
67 | |
---|
68 | % Set the trigger output delays. |
---|
69 | nodes.wl_triggerManagerCmd('output_config_delay', [trig_out_ids.BASEBAND], 0); |
---|
70 | nodes.wl_triggerManagerCmd('output_config_delay', [trig_out_ids.AGC], 3000); %3000 ns delay before starting the AGC |
---|
71 | |
---|
72 | % Get IDs for the interfaces on the boards. |
---|
73 | ifc_ids_TX = wl_getInterfaceIDs(node_tx); |
---|
74 | ifc_ids_RX = wl_getInterfaceIDs(node_rx); |
---|
75 | |
---|
76 | % Set up the TX / RX nodes and RF interfaces |
---|
77 | TX_RF = ifc_ids_TX.RF_ON_BOARD; |
---|
78 | TX_RF_VEC = ifc_ids_TX.RF_ON_BOARD_VEC; |
---|
79 | TX_RF_ALL = ifc_ids_TX.RF_ALL; |
---|
80 | |
---|
81 | RX_RF = ifc_ids_RX.RF_ON_BOARD; |
---|
82 | RX_RF_VEC = ifc_ids_RX.RF_ON_BOARD_VEC; |
---|
83 | RX_RF_ALL = ifc_ids_RX.RF_ALL; |
---|
84 | |
---|
85 | % Set up the interface for the experiment |
---|
86 | wl_interfaceCmd(node_tx, TX_RF_ALL, 'channel', 2.4, CHANNEL); |
---|
87 | wl_interfaceCmd(node_rx, RX_RF_ALL, 'channel', 2.4, CHANNEL); |
---|
88 | |
---|
89 | wl_interfaceCmd(node_tx, TX_RF_ALL, 'tx_gains', 3, 30); |
---|
90 | |
---|
91 | if(USE_AGC) |
---|
92 | wl_interfaceCmd(node_rx, RX_RF_ALL, 'rx_gain_mode', 'automatic'); |
---|
93 | wl_basebandCmd(node_rx, 'agc_target', -13); %-13 |
---|
94 | else |
---|
95 | wl_interfaceCmd(node_rx, RX_RF_ALL, 'rx_gain_mode', 'manual'); |
---|
96 | RxGainRF = 2; % Rx RF Gain in [1:3] |
---|
97 | RxGainBB = 12; % Rx Baseband Gain in [0:31] |
---|
98 | wl_interfaceCmd(node_rx, RX_RF_ALL, 'rx_gains', RxGainRF, RxGainBB); |
---|
99 | end |
---|
100 | |
---|
101 | % Get parameters from the node |
---|
102 | SAMP_FREQ = wl_basebandCmd(nodes(1), 'tx_buff_clk_freq'); |
---|
103 | Ts = 1/SAMP_FREQ; |
---|
104 | |
---|
105 | % We will read the transmitter's maximum I/Q buffer length |
---|
106 | % and assign that value to a temporary variable. |
---|
107 | % |
---|
108 | % NOTE: We assume that the buffers sizes are the same for all interfaces |
---|
109 | |
---|
110 | maximum_buffer_len = min(MAX_TX_LEN, wl_basebandCmd(node_tx, TX_RF_VEC, 'tx_buff_max_num_samples')); |
---|
111 | example_mode_string = 'hw'; |
---|
112 | else |
---|
113 | % Use sane defaults for hardware-dependent params in sim-only version |
---|
114 | maximum_buffer_len = min(MAX_TX_LEN, 2^20); |
---|
115 | SAMP_FREQ = 40e6; |
---|
116 | example_mode_string = 'sim'; |
---|
117 | end |
---|
118 | |
---|
119 | %% Define a half-band 2x interpolation filter response |
---|
120 | interp_filt2 = zeros(1,43); |
---|
121 | interp_filt2([1 3 5 7 9 11 13 15 17 19 21]) = [12 -32 72 -140 252 -422 682 -1086 1778 -3284 10364]; |
---|
122 | interp_filt2([23 25 27 29 31 33 35 37 39 41 43]) = interp_filt2(fliplr([1 3 5 7 9 11 13 15 17 19 21])); |
---|
123 | interp_filt2(22) = 16384; |
---|
124 | interp_filt2 = interp_filt2./max(abs(interp_filt2)); |
---|
125 | |
---|
126 | % Define the preamble |
---|
127 | % Note: The STS symbols in the preamble meet the requirements needed by the |
---|
128 | % AGC core at the receiver. Details on the operation of the AGC are |
---|
129 | % available on the wiki: http://warpproject.org/trac/wiki/WARPLab/AGC |
---|
130 | sts_f = zeros(1,64); |
---|
131 | sts_f(1:27) = [0 0 0 0 -1-1i 0 0 0 -1-1i 0 0 0 1+1i 0 0 0 1+1i 0 0 0 1+1i 0 0 0 1+1i 0 0]; |
---|
132 | sts_f(39:64) = [0 0 1+1i 0 0 0 -1-1i 0 0 0 1+1i 0 0 0 -1-1i 0 0 0 -1-1i 0 0 0 1+1i 0 0 0]; |
---|
133 | sts_t = ifft(sqrt(13/6).*sts_f, 64); |
---|
134 | sts_t = sts_t(1:16); |
---|
135 | |
---|
136 | % LTS for CFO and channel estimation |
---|
137 | lts_f = [0 1 -1 -1 1 1 -1 1 -1 1 -1 -1 -1 -1 -1 1 1 -1 -1 1 -1 1 -1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 -1 -1 1 1 -1 1 -1 1 1 1 1 1 1 -1 -1 1 1 -1 1 -1 1 1 1 1]; |
---|
138 | lts_t = ifft(lts_f, 64); |
---|
139 | |
---|
140 | % We break the construction of our preamble into two pieces. First, the |
---|
141 | % legacy portion, is used for CFO recovery and timing synchronization at |
---|
142 | % the receiver. The processing of this portion of the preamble is SISO. |
---|
143 | % Second, we include explicit MIMO channel training symbols. |
---|
144 | |
---|
145 | % Legacy Preamble |
---|
146 | |
---|
147 | % Use 30 copies of the 16-sample STS for extra AGC settling margin |
---|
148 | % To avoid accidentally beamforming the preamble transmissions, we will |
---|
149 | % let RFA be dominant and handle the STS and first set of LTS. We will |
---|
150 | % append an extra LTS sequence from RFB so that we can build out the |
---|
151 | % channel matrix at the receiver |
---|
152 | |
---|
153 | sts_t_rep = repmat(sts_t, 1, 30); |
---|
154 | |
---|
155 | preamble_legacy_A = [sts_t_rep, lts_t(33:64), lts_t, lts_t]; |
---|
156 | preamble_legacy_B = [circshift(sts_t_rep, [0, TX_SPATIAL_STREAM_SHIFT]), zeros(1, 160)]; |
---|
157 | |
---|
158 | % MIMO Preamble |
---|
159 | |
---|
160 | % There are many strategies for training MIMO channels. Here, we will use |
---|
161 | % the LTS sequence defined before and orthogonalize over time. First we |
---|
162 | % will send the sequence on stream A and then we will send it on stream B |
---|
163 | |
---|
164 | preamble_mimo_A = [lts_t(33:64), lts_t, zeros(1,96)]; |
---|
165 | preamble_mimo_B = [zeros(1,96), lts_t(33:64), lts_t]; |
---|
166 | |
---|
167 | preamble_A = [preamble_legacy_A, preamble_mimo_A]; |
---|
168 | preamble_B = [preamble_legacy_B, preamble_mimo_B]; |
---|
169 | |
---|
170 | % Sanity check variables that affect the number of Tx samples |
---|
171 | if(SAMP_PADDING + INTERP_RATE*((N_OFDM_SYMS/2 * (N_SC + CP_LEN)) + length(preamble_A) + 100) > maximum_buffer_len) |
---|
172 | fprintf('Too many OFDM symbols for TX_NUM_SAMPS!\n'); |
---|
173 | fprintf('Raise TX_NUM_SAMPS to %d, or \n', SAMP_PADDING + INTERP_RATE*((N_OFDM_SYMS/2 * (N_SC + CP_LEN)) + length(preamble_A) + 100)); |
---|
174 | fprintf('Reduce N_OFDM_SYMS to %d\n', 2*(floor(( (maximum_buffer_len/INTERP_RATE)-length(preamble_A)-100-SAMP_PADDING )/( N_SC + CP_LEN )) - 1)); |
---|
175 | return; |
---|
176 | end |
---|
177 | |
---|
178 | %% Generate a payload of random integers |
---|
179 | tx_data = randi(MOD_ORDER, 1, N_DATA_SYMS) - 1; |
---|
180 | |
---|
181 | % Functions for data -> complex symbol mapping (like qammod, avoids comm toolbox requirement) |
---|
182 | % These anonymous functions implement the modulation mapping from IEEE 802.11-2012 Section 18.3.5.8 |
---|
183 | modvec_bpsk = (1/sqrt(2)) .* [-1 1]; |
---|
184 | modvec_16qam = (1/sqrt(10)) .* [-3 -1 +3 +1]; |
---|
185 | |
---|
186 | mod_fcn_bpsk = @(x) complex(modvec_bpsk(1+x),0); |
---|
187 | mod_fcn_qpsk = @(x) complex(modvec_bpsk(1+bitshift(x, -1)), modvec_bpsk(1+mod(x, 2))); |
---|
188 | mod_fcn_16qam = @(x) complex(modvec_16qam(1+bitshift(x, -2)), modvec_16qam(1+mod(x,4))); |
---|
189 | |
---|
190 | % Map the data values on to complex symbols |
---|
191 | switch MOD_ORDER |
---|
192 | case 2 % BPSK |
---|
193 | tx_syms = arrayfun(mod_fcn_bpsk, tx_data); |
---|
194 | case 4 % QPSK |
---|
195 | tx_syms = arrayfun(mod_fcn_qpsk, tx_data); |
---|
196 | case 16 % 16-QAM |
---|
197 | tx_syms = arrayfun(mod_fcn_16qam, tx_data); |
---|
198 | otherwise |
---|
199 | fprintf('Invalid MOD_ORDER (%d)! Must be in [2, 4, 16]\n', MOD_ORDER); |
---|
200 | return; |
---|
201 | end |
---|
202 | |
---|
203 | % Reshape the symbol vector into two different spatial streams |
---|
204 | tx_syms_space_mat = reshape(tx_syms, 2, length(tx_syms)/2); |
---|
205 | |
---|
206 | % Break up the matrix into a vector for each antenna |
---|
207 | tx_syms_A = tx_syms_space_mat(1,:); |
---|
208 | tx_syms_B = tx_syms_space_mat(2,:); |
---|
209 | |
---|
210 | |
---|
211 | % Reshape the symbol vector to a matrix with one column per OFDM symbol |
---|
212 | tx_syms_mat_A = reshape(tx_syms_A, length(SC_IND_DATA), N_OFDM_SYMS/2); |
---|
213 | tx_syms_mat_B = reshape(tx_syms_B, length(SC_IND_DATA), N_OFDM_SYMS/2); |
---|
214 | |
---|
215 | % Define the pilot tone values as BPSK symbols |
---|
216 | % We will transmit pilots only on RF A |
---|
217 | pilots_A = [1 1 -1 1].'; |
---|
218 | pilots_B = [0 0 0 0].'; |
---|
219 | |
---|
220 | % Repeat the pilots across all OFDM symbols |
---|
221 | pilots_mat_A = repmat(pilots_A, 1, N_OFDM_SYMS/2); |
---|
222 | pilots_mat_B = repmat(pilots_B, 1, N_OFDM_SYMS/2); |
---|
223 | |
---|
224 | %% IFFT |
---|
225 | |
---|
226 | % Construct the IFFT input matrix |
---|
227 | ifft_in_mat_A = zeros(N_SC, N_OFDM_SYMS/2); |
---|
228 | ifft_in_mat_B = zeros(N_SC, N_OFDM_SYMS/2); |
---|
229 | |
---|
230 | % Insert the data and pilot values; other subcarriers will remain at 0 |
---|
231 | ifft_in_mat_A(SC_IND_DATA, :) = tx_syms_mat_A; |
---|
232 | ifft_in_mat_A(SC_IND_PILOTS, :) = pilots_mat_A; |
---|
233 | |
---|
234 | ifft_in_mat_B(SC_IND_DATA, :) = tx_syms_mat_B; |
---|
235 | ifft_in_mat_B(SC_IND_PILOTS, :) = pilots_mat_B; |
---|
236 | |
---|
237 | %Perform the IFFT |
---|
238 | tx_payload_mat_A = ifft(ifft_in_mat_A, N_SC, 1); |
---|
239 | tx_payload_mat_B = ifft(ifft_in_mat_B, N_SC, 1); |
---|
240 | |
---|
241 | % Insert the cyclic prefix |
---|
242 | if(CP_LEN > 0) |
---|
243 | tx_cp = tx_payload_mat_A((end-CP_LEN+1 : end), :); |
---|
244 | tx_payload_mat_A = [tx_cp; tx_payload_mat_A]; |
---|
245 | |
---|
246 | tx_cp = tx_payload_mat_B((end-CP_LEN+1 : end), :); |
---|
247 | tx_payload_mat_B = [tx_cp; tx_payload_mat_B]; |
---|
248 | end |
---|
249 | |
---|
250 | % Reshape to a vector |
---|
251 | tx_payload_vec_A = reshape(tx_payload_mat_A, 1, numel(tx_payload_mat_A)); |
---|
252 | tx_payload_vec_B = reshape(tx_payload_mat_B, 1, numel(tx_payload_mat_B)); |
---|
253 | |
---|
254 | % Construct the full time-domain OFDM waveform |
---|
255 | tx_vec_A = [preamble_A tx_payload_vec_A]; |
---|
256 | tx_vec_B = [preamble_B tx_payload_vec_B]; |
---|
257 | |
---|
258 | % Pad with zeros for transmission |
---|
259 | tx_vec_padded_A = [tx_vec_A zeros(1,50)]; |
---|
260 | tx_vec_padded_B = [tx_vec_B zeros(1,50)]; |
---|
261 | |
---|
262 | %% Interpolate |
---|
263 | if(INTERP_RATE == 1) |
---|
264 | tx_vec_air_A = tx_vec_padded_A; |
---|
265 | tx_vec_air_B = tx_vec_padded_B; |
---|
266 | elseif(INTERP_RATE == 2) |
---|
267 | % Zero pad then filter (same as interp or upfirdn without signal processing toolbox) |
---|
268 | tx_vec_2x_A = zeros(1, 2*numel(tx_vec_padded_A)); |
---|
269 | tx_vec_2x_A(1:2:end) = tx_vec_padded_A; |
---|
270 | tx_vec_air_A = filter(interp_filt2, 1, tx_vec_2x_A); |
---|
271 | tx_vec_2x_B = zeros(1, 2*numel(tx_vec_padded_B)); |
---|
272 | tx_vec_2x_B(1:2:end) = tx_vec_padded_B; |
---|
273 | tx_vec_air_B = filter(interp_filt2, 1, tx_vec_2x_B); |
---|
274 | end |
---|
275 | |
---|
276 | % Scale the Tx vector to +/- 1 |
---|
277 | tx_vec_air_A = TX_SCALE .* tx_vec_air_A ./ max(abs(tx_vec_air_A)); |
---|
278 | tx_vec_air_B = TX_SCALE .* tx_vec_air_B ./ max(abs(tx_vec_air_B)); |
---|
279 | |
---|
280 | |
---|
281 | TX_NUM_SAMPS = length(tx_vec_air_A); |
---|
282 | |
---|
283 | if(USE_WARPLAB_TXRX) |
---|
284 | wl_basebandCmd(nodes, 'tx_delay', 0); |
---|
285 | wl_basebandCmd(nodes, 'tx_length', TX_NUM_SAMPS+100); % Number of samples to send |
---|
286 | wl_basebandCmd(nodes, 'rx_length', TX_NUM_SAMPS+SAMP_PADDING); % Number of samples to receive |
---|
287 | end |
---|
288 | |
---|
289 | if(USE_WARPLAB_TXRX) |
---|
290 | %% WARPLab Tx/Rx |
---|
291 | |
---|
292 | tx_mat_air = [tx_vec_air_A(:) , tx_vec_air_B(:)]; |
---|
293 | %tx_mat_air = [tx_vec_air_B(:) , tx_vec_air_A(:)]; |
---|
294 | |
---|
295 | % Write the Tx waveform to the Tx node |
---|
296 | wl_basebandCmd(node_tx, TX_RF_VEC, 'write_IQ', tx_mat_air); |
---|
297 | |
---|
298 | % Enable the Tx and Rx radios |
---|
299 | wl_interfaceCmd(node_tx, TX_RF, 'tx_en'); |
---|
300 | wl_interfaceCmd(node_rx, RX_RF, 'rx_en'); |
---|
301 | |
---|
302 | % Enable the Tx and Rx buffers |
---|
303 | wl_basebandCmd(node_tx, TX_RF, 'tx_buff_en'); |
---|
304 | wl_basebandCmd(node_rx, RX_RF, 'rx_buff_en'); |
---|
305 | |
---|
306 | % Trigger the Tx/Rx cycle at both nodes |
---|
307 | eth_trig.send(); |
---|
308 | |
---|
309 | % Retrieve the received waveform from the Rx node |
---|
310 | rx_mat_air = wl_basebandCmd(node_rx, RX_RF_VEC, 'read_IQ', 0, TX_NUM_SAMPS+SAMP_PADDING); |
---|
311 | |
---|
312 | rx_vec_air_A = rx_mat_air(:,1).'; |
---|
313 | rx_vec_air_B = rx_mat_air(:,2).'; |
---|
314 | |
---|
315 | % Disable the Tx/Rx radios and buffers |
---|
316 | wl_basebandCmd(node_tx, TX_RF_ALL, 'tx_rx_buff_dis'); |
---|
317 | wl_basebandCmd(node_rx, RX_RF_ALL, 'tx_rx_buff_dis'); |
---|
318 | |
---|
319 | wl_interfaceCmd(node_tx, TX_RF_ALL, 'tx_rx_dis'); |
---|
320 | wl_interfaceCmd(node_rx, RX_RF_ALL, 'tx_rx_dis'); |
---|
321 | else |
---|
322 | |
---|
323 | rx_vec_air_A = tx_vec_air_A + .5 * tx_vec_air_B; |
---|
324 | rx_vec_air_B = tx_vec_air_B + .5 * tx_vec_air_A; |
---|
325 | |
---|
326 | rx_vec_air_A = [rx_vec_air_A, zeros(1,SAMP_PADDING)]; |
---|
327 | rx_vec_air_B = [rx_vec_air_B, zeros(1,SAMP_PADDING)]; |
---|
328 | |
---|
329 | rx_vec_air_A = rx_vec_air_A + 1e-2*complex(randn(1,length(rx_vec_air_A)), randn(1,length(rx_vec_air_A))); |
---|
330 | rx_vec_air_B = rx_vec_air_B + 1e-2*complex(randn(1,length(rx_vec_air_B)), randn(1,length(rx_vec_air_B))); |
---|
331 | |
---|
332 | end |
---|
333 | |
---|
334 | %% Decimate |
---|
335 | if(DECIMATE_RATE == 1) |
---|
336 | raw_rx_dec_A = rx_vec_air_A; |
---|
337 | raw_rx_dec_B = rx_vec_air_B; |
---|
338 | elseif(DECIMATE_RATE == 2) |
---|
339 | raw_rx_dec_A = filter(interp_filt2, 1, rx_vec_air_A); |
---|
340 | raw_rx_dec_A = raw_rx_dec_A(1:2:end); |
---|
341 | raw_rx_dec_B = filter(interp_filt2, 1, rx_vec_air_B); |
---|
342 | raw_rx_dec_B = raw_rx_dec_B(1:2:end); |
---|
343 | end |
---|
344 | |
---|
345 | %% Correlate for LTS |
---|
346 | |
---|
347 | % For simplicity, we'll only use RFA for LTS correlation and peak |
---|
348 | % discovery. A straightforward addition would be to repeat this process for |
---|
349 | % RFB and combine the results for detection diversity. |
---|
350 | |
---|
351 | % Complex cross correlation of Rx waveform with time-domain LTS |
---|
352 | lts_corr = abs(conv(conj(fliplr(lts_t)), sign(raw_rx_dec_A))); |
---|
353 | |
---|
354 | % Skip early and late samples - avoids occasional false positives from pre-AGC samples |
---|
355 | lts_corr = lts_corr(32:end-32); |
---|
356 | |
---|
357 | % Find all correlation peaks |
---|
358 | lts_peaks = find(lts_corr > LTS_CORR_THRESH*max(lts_corr)); |
---|
359 | |
---|
360 | % Select best candidate correlation peak as LTS-payload boundary |
---|
361 | % In this MIMO example, we actually have 3 LTS symbols sent in a row. |
---|
362 | % The first two are sent by RFA on the TX node and the last one was sent |
---|
363 | % by RFB. We will actually look for the separation between the first and the |
---|
364 | % last for synchronizing our starting index. |
---|
365 | |
---|
366 | [LTS1, LTS2] = meshgrid(lts_peaks,lts_peaks); |
---|
367 | [lts_last_peak_index,y] = find(LTS2-LTS1 == length(lts_t)); |
---|
368 | |
---|
369 | % Stop if no valid correlation peak was found |
---|
370 | if(isempty(lts_last_peak_index)) |
---|
371 | fprintf('No LTS Correlation Peaks Found!\n'); |
---|
372 | return; |
---|
373 | end |
---|
374 | |
---|
375 | % Set the sample indices of the payload symbols and preamble |
---|
376 | % The "+32" here corresponds to the 32-sample cyclic prefix on the preamble LTS |
---|
377 | % The "+192" corresponds to the length of the extra training symbols for MIMO channel estimation |
---|
378 | mimo_training_ind = lts_peaks(max(lts_last_peak_index)) + 32; |
---|
379 | payload_ind = mimo_training_ind + 192; |
---|
380 | |
---|
381 | % Subtract of 2 full LTS sequences and one cyclic prefixes |
---|
382 | % The "-160" corresponds to the length of the preamble LTS (2.5 copies of 64-sample LTS) |
---|
383 | lts_ind = mimo_training_ind-160; |
---|
384 | |
---|
385 | if(DO_APPLY_CFO_CORRECTION) |
---|
386 | %Extract LTS (not yet CFO corrected) |
---|
387 | rx_lts = raw_rx_dec_A(lts_ind : lts_ind+159); %Extract the first two LTS for CFO |
---|
388 | rx_lts1 = rx_lts(-64+-FFT_OFFSET + [97:160]); |
---|
389 | rx_lts2 = rx_lts(-FFT_OFFSET + [97:160]); |
---|
390 | |
---|
391 | %Calculate coarse CFO est |
---|
392 | rx_cfo_est_lts = mean(unwrap(angle(rx_lts2 .* conj(rx_lts1)))); |
---|
393 | rx_cfo_est_lts = rx_cfo_est_lts/(2*pi*64); |
---|
394 | else |
---|
395 | rx_cfo_est_lts = 0; |
---|
396 | end |
---|
397 | |
---|
398 | % Apply CFO correction to raw Rx waveforms |
---|
399 | rx_cfo_corr_t = exp(-1i*2*pi*rx_cfo_est_lts*[0:length(raw_rx_dec_A)-1]); |
---|
400 | rx_dec_cfo_corr_A = raw_rx_dec_A .* rx_cfo_corr_t; |
---|
401 | rx_dec_cfo_corr_B = raw_rx_dec_B .* rx_cfo_corr_t; |
---|
402 | |
---|
403 | % MIMO Channel Estimatation |
---|
404 | lts_ind_TXA_start = mimo_training_ind + 32 - FFT_OFFSET; |
---|
405 | lts_ind_TXA_end = lts_ind_TXA_start + 64 - 1; |
---|
406 | |
---|
407 | lts_ind_TXB_start = mimo_training_ind + 32 + 64 + 32 - FFT_OFFSET; |
---|
408 | lts_ind_TXB_end = lts_ind_TXB_start + 64 - 1; |
---|
409 | |
---|
410 | rx_lts_AA = rx_dec_cfo_corr_A( lts_ind_TXA_start:lts_ind_TXA_end ); |
---|
411 | rx_lts_BA = rx_dec_cfo_corr_A( lts_ind_TXB_start:lts_ind_TXB_end ); |
---|
412 | |
---|
413 | rx_lts_AB = rx_dec_cfo_corr_B( lts_ind_TXA_start:lts_ind_TXA_end ); |
---|
414 | rx_lts_BB = rx_dec_cfo_corr_B( lts_ind_TXB_start:lts_ind_TXB_end ); |
---|
415 | |
---|
416 | rx_lts_AA_f = fft(rx_lts_AA); |
---|
417 | rx_lts_BA_f = fft(rx_lts_BA); |
---|
418 | |
---|
419 | rx_lts_AB_f = fft(rx_lts_AB); |
---|
420 | rx_lts_BB_f = fft(rx_lts_BB); |
---|
421 | |
---|
422 | % Calculate channel estimate |
---|
423 | rx_H_est_AA = lts_f .* rx_lts_AA_f; |
---|
424 | rx_H_est_BA = lts_f .* rx_lts_BA_f; |
---|
425 | |
---|
426 | rx_H_est_AB = lts_f .* rx_lts_AB_f; |
---|
427 | rx_H_est_BB = lts_f .* rx_lts_BB_f; |
---|
428 | |
---|
429 | %% Rx payload processing |
---|
430 | |
---|
431 | % Extract the payload samples (integral number of OFDM symbols following preamble) |
---|
432 | payload_vec_A = rx_dec_cfo_corr_A(payload_ind : payload_ind+(N_OFDM_SYMS/2)*(N_SC+CP_LEN)-1); |
---|
433 | payload_mat_A = reshape(payload_vec_A, (N_SC+CP_LEN), (N_OFDM_SYMS/2)); |
---|
434 | |
---|
435 | payload_vec_B = rx_dec_cfo_corr_B(payload_ind : payload_ind+(N_OFDM_SYMS/2)*(N_SC+CP_LEN)-1); |
---|
436 | payload_mat_B = reshape(payload_vec_B, (N_SC+CP_LEN), (N_OFDM_SYMS/2)); |
---|
437 | |
---|
438 | % Remove the cyclic prefix, keeping FFT_OFFSET samples of CP (on average) |
---|
439 | payload_mat_noCP_A = payload_mat_A(CP_LEN-FFT_OFFSET+[1:N_SC], :); |
---|
440 | payload_mat_noCP_B = payload_mat_B(CP_LEN-FFT_OFFSET+[1:N_SC], :); |
---|
441 | |
---|
442 | % Take the FFT |
---|
443 | syms_f_mat_A = fft(payload_mat_noCP_A, N_SC, 1); |
---|
444 | syms_f_mat_B = fft(payload_mat_noCP_B, N_SC, 1); |
---|
445 | |
---|
446 | % Equalize pilots |
---|
447 | % Because we only used Tx RFA to send pilots, we can do SISO equalization |
---|
448 | % here. This is zero-forcing (just divide by chan estimates) |
---|
449 | syms_eq_mat_pilots = syms_f_mat_A ./ repmat(rx_H_est_AA.', 1, N_OFDM_SYMS/2); |
---|
450 | |
---|
451 | if DO_APPLY_SFO_CORRECTION |
---|
452 | % SFO manifests as a frequency-dependent phase whose slope increases |
---|
453 | % over time as the Tx and Rx sample streams drift apart from one |
---|
454 | % another. To correct for this effect, we calculate this phase slope at |
---|
455 | % each OFDM symbol using the pilot tones and use this slope to |
---|
456 | % interpolate a phase correction for each data-bearing subcarrier. |
---|
457 | |
---|
458 | % Extract the pilot tones and "equalize" them by their nominal Tx values |
---|
459 | pilots_f_mat = syms_eq_mat_pilots(SC_IND_PILOTS,:); |
---|
460 | pilots_f_mat_comp = pilots_f_mat.*pilots_mat_A; |
---|
461 | |
---|
462 | % Calculate the phases of every Rx pilot tone |
---|
463 | pilot_phases = unwrap(angle(fftshift(pilots_f_mat_comp, 1)), [], 1); |
---|
464 | |
---|
465 | pilot_spacing_mat = repmat(mod(diff(fftshift(SC_IND_PILOTS)), 64).', 1, N_OFDM_SYMS/2); |
---|
466 | pilot_slope_mat = mean(diff(pilot_phases) ./ pilot_spacing_mat); |
---|
467 | |
---|
468 | % Calculate the SFO correction phases for each OFDM symbol |
---|
469 | pilot_phase_sfo_corr = fftshift((-32:31).' * pilot_slope_mat, 1); |
---|
470 | pilot_phase_corr = exp(-1i*(pilot_phase_sfo_corr)); |
---|
471 | |
---|
472 | % Apply the pilot phase correction per symbol |
---|
473 | syms_f_mat_A = syms_f_mat_A .* pilot_phase_corr; |
---|
474 | syms_f_mat_B = syms_f_mat_B .* pilot_phase_corr; |
---|
475 | else |
---|
476 | % Define an empty SFO correction matrix (used by plotting code below) |
---|
477 | pilot_phase_sfo_corr = zeros(N_SC, N_OFDM_SYMS); |
---|
478 | end |
---|
479 | |
---|
480 | % Extract the pilots and calculate per-symbol phase error |
---|
481 | if DO_APPLY_PHASE_ERR_CORRECTION |
---|
482 | pilots_f_mat = syms_eq_mat_pilots(SC_IND_PILOTS, :); |
---|
483 | pilot_phase_err = angle(mean(pilots_f_mat.*pilots_mat_A)); |
---|
484 | else |
---|
485 | % Define an empty phase correction vector (used by plotting code below) |
---|
486 | pilot_phase_err = zeros(1, N_OFDM_SYMS/2); |
---|
487 | end |
---|
488 | pilot_phase_corr = repmat(exp(-1i*pilot_phase_err), N_SC, 1); |
---|
489 | |
---|
490 | % Apply pilot phase correction to both received streams |
---|
491 | syms_f_mat_pc_A = syms_f_mat_A .* pilot_phase_corr; |
---|
492 | syms_f_mat_pc_B = syms_f_mat_B .* pilot_phase_corr; |
---|
493 | |
---|
494 | % MIMO Equalization |
---|
495 | % We need to apply the MIMO equalization to each subcarrier separately. |
---|
496 | % There, unfortunately, is no great vector-y solution to do this, so we |
---|
497 | % reluctantly employ a FOR loop. |
---|
498 | |
---|
499 | syms_eq_mat_A = zeros(N_SC, N_OFDM_SYMS/2); |
---|
500 | syms_eq_mat_B = zeros(N_SC, N_OFDM_SYMS/2); |
---|
501 | channel_condition_mat = zeros(1,N_SC); |
---|
502 | for sc_idx = [SC_IND_DATA, SC_IND_PILOTS] |
---|
503 | y = [syms_f_mat_pc_A(sc_idx,:) ; syms_f_mat_pc_B(sc_idx,:)]; |
---|
504 | H = [rx_H_est_AA(sc_idx), rx_H_est_BA(sc_idx) ; rx_H_est_AB(sc_idx), rx_H_est_BB(sc_idx)]; |
---|
505 | x = inv(H)*y; |
---|
506 | syms_eq_mat_A(sc_idx, :) = x(1,:); |
---|
507 | syms_eq_mat_B(sc_idx, :) = x(2,:); |
---|
508 | channel_condition_mat(sc_idx) = rcond(H); |
---|
509 | end |
---|
510 | |
---|
511 | %subplot(2,1,1) |
---|
512 | %plot(syms_eq_mat_A,'.') |
---|
513 | %subplot(2,1,2) |
---|
514 | %plot(syms_eq_mat_B,'.') |
---|
515 | |
---|
516 | payload_syms_mat_A = syms_eq_mat_A(SC_IND_DATA, :); |
---|
517 | payload_syms_mat_B = syms_eq_mat_B(SC_IND_DATA, :); |
---|
518 | |
---|
519 | %% Demodulate |
---|
520 | rx_syms_A = reshape(payload_syms_mat_A, 1, N_DATA_SYMS/2); |
---|
521 | rx_syms_B = reshape(payload_syms_mat_B, 1, N_DATA_SYMS/2); |
---|
522 | |
---|
523 | % Combine both streams to a single vector of symbols |
---|
524 | rx_syms_space_mat = [rx_syms_A; rx_syms_B]; |
---|
525 | rx_syms = reshape(rx_syms_space_mat, 1, length(rx_syms_A)*2); |
---|
526 | |
---|
527 | demod_fcn_bpsk = @(x) double(real(x)>0); |
---|
528 | demod_fcn_qpsk = @(x) double(2*(real(x)>0) + 1*(imag(x)>0)); |
---|
529 | demod_fcn_16qam = @(x) (8*(real(x)>0)) + (4*(abs(real(x))<0.6325)) + (2*(imag(x)>0)) + (1*(abs(imag(x))<0.6325)); |
---|
530 | |
---|
531 | switch(MOD_ORDER) |
---|
532 | case 2 % BPSK |
---|
533 | rx_data = arrayfun(demod_fcn_bpsk, rx_syms); |
---|
534 | case 4 % QPSK |
---|
535 | rx_data = arrayfun(demod_fcn_qpsk, rx_syms); |
---|
536 | case 16 % 16-QAM |
---|
537 | rx_data = arrayfun(demod_fcn_16qam, rx_syms); |
---|
538 | end |
---|
539 | |
---|
540 | |
---|
541 | %% Plot Results |
---|
542 | cf = 0; |
---|
543 | |
---|
544 | % Tx signal |
---|
545 | cf = cf + 1; |
---|
546 | figure(cf); clf; |
---|
547 | |
---|
548 | subplot(2,2,1); |
---|
549 | plot(real(tx_vec_air_A), 'b'); |
---|
550 | axis([0 length(tx_vec_air_A) -TX_SCALE TX_SCALE]) |
---|
551 | grid on; |
---|
552 | title('RFA Tx Waveform (I)'); |
---|
553 | |
---|
554 | subplot(2,2,2); |
---|
555 | plot(imag(tx_vec_air_A), 'r'); |
---|
556 | axis([0 length(tx_vec_air_A) -TX_SCALE TX_SCALE]) |
---|
557 | grid on; |
---|
558 | title('RFA Tx Waveform (Q)'); |
---|
559 | |
---|
560 | subplot(2,2,3); |
---|
561 | plot(real(tx_vec_air_B), 'b'); |
---|
562 | axis([0 length(tx_vec_air_B) -TX_SCALE TX_SCALE]) |
---|
563 | grid on; |
---|
564 | title('RFB Tx Waveform (I)'); |
---|
565 | |
---|
566 | subplot(2,2,4); |
---|
567 | plot(imag(tx_vec_air_B), 'r'); |
---|
568 | axis([0 length(tx_vec_air_B) -TX_SCALE TX_SCALE]) |
---|
569 | grid on; |
---|
570 | title('RFB Tx Waveform (Q)'); |
---|
571 | |
---|
572 | if(WRITE_PNG_FILES) |
---|
573 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_txIQ', example_mode_string), '-dpng', '-r96', '-painters') |
---|
574 | end |
---|
575 | |
---|
576 | % Rx signal |
---|
577 | cf = cf + 1; |
---|
578 | figure(cf); clf; |
---|
579 | subplot(2,2,1); |
---|
580 | plot(real(rx_vec_air_A), 'b'); |
---|
581 | axis([0 length(rx_vec_air_A) -TX_SCALE TX_SCALE]) |
---|
582 | grid on; |
---|
583 | title('RFA Rx Waveform (I)'); |
---|
584 | |
---|
585 | subplot(2,2,2); |
---|
586 | plot(imag(rx_vec_air_A), 'r'); |
---|
587 | axis([0 length(rx_vec_air_A) -TX_SCALE TX_SCALE]) |
---|
588 | grid on; |
---|
589 | title('RFA Rx Waveform (Q)'); |
---|
590 | |
---|
591 | subplot(2,2,3); |
---|
592 | plot(real(rx_vec_air_B), 'b'); |
---|
593 | axis([0 length(rx_vec_air_B) -TX_SCALE TX_SCALE]) |
---|
594 | grid on; |
---|
595 | title('RFB Rx Waveform (I)'); |
---|
596 | |
---|
597 | subplot(2,2,4); |
---|
598 | plot(imag(rx_vec_air_B), 'r'); |
---|
599 | axis([0 length(rx_vec_air_B) -TX_SCALE TX_SCALE]) |
---|
600 | grid on; |
---|
601 | title('RFB Rx Waveform (Q)'); |
---|
602 | |
---|
603 | if(WRITE_PNG_FILES) |
---|
604 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_rxIQ', example_mode_string), '-dpng', '-r96', '-painters') |
---|
605 | end |
---|
606 | |
---|
607 | % Rx LTS correlation |
---|
608 | cf = cf + 1; |
---|
609 | figure(cf); clf; |
---|
610 | lts_to_plot = lts_corr; |
---|
611 | plot(lts_to_plot, '.-b', 'LineWidth', 1); |
---|
612 | hold on; |
---|
613 | grid on; |
---|
614 | line([1 length(lts_to_plot)], LTS_CORR_THRESH*max(lts_to_plot)*[1 1], 'LineStyle', '--', 'Color', 'r', 'LineWidth', 2); |
---|
615 | title('LTS Correlation and Threshold') |
---|
616 | xlabel('Sample Index') |
---|
617 | myAxis = axis(); |
---|
618 | axis([1, 1000, myAxis(3), myAxis(4)]) |
---|
619 | |
---|
620 | if(WRITE_PNG_FILES) |
---|
621 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_ltsCorr', example_mode_string), '-dpng', '-r96', '-painters') |
---|
622 | end |
---|
623 | |
---|
624 | % Channel Estimates |
---|
625 | cf = cf + 1; |
---|
626 | |
---|
627 | rx_H_est_plot_AA = rx_H_est_AA; |
---|
628 | rx_H_est_plot_AB = rx_H_est_AB; |
---|
629 | rx_H_est_plot_BA = rx_H_est_BA; |
---|
630 | rx_H_est_plot_BB = rx_H_est_BB; |
---|
631 | |
---|
632 | x = (20/N_SC) * (-(N_SC/2):(N_SC/2 - 1)); |
---|
633 | |
---|
634 | figure(cf); clf; |
---|
635 | |
---|
636 | subplot(3,2,1); |
---|
637 | bh = bar(x, fftshift(abs(rx_H_est_plot_AA)),1,'LineWidth', 1); |
---|
638 | shading flat |
---|
639 | set(bh,'FaceColor',[0 0 1]) |
---|
640 | axis([min(x) max(x) 0 1.1*max(abs(rx_H_est_plot_AA))]) |
---|
641 | grid on; |
---|
642 | title('A->A Channel Estimates (Magnitude)') |
---|
643 | xlabel('Baseband Frequency (MHz)') |
---|
644 | |
---|
645 | subplot(3,2,2); |
---|
646 | bh = bar(x, fftshift(abs(rx_H_est_plot_AB)),1,'LineWidth', 1); |
---|
647 | shading flat |
---|
648 | set(bh,'FaceColor',[0 0 1]) |
---|
649 | axis([min(x) max(x) 0 1.1*max(abs(rx_H_est_plot_AB))]) |
---|
650 | grid on; |
---|
651 | title('A->B Channel Estimates (Magnitude)') |
---|
652 | xlabel('Baseband Frequency (MHz)') |
---|
653 | |
---|
654 | subplot(3,2,3); |
---|
655 | bh = bar(x, fftshift(abs(rx_H_est_plot_BA)),1,'LineWidth', 1); |
---|
656 | shading flat |
---|
657 | set(bh,'FaceColor',[0 0 1]) |
---|
658 | axis([min(x) max(x) 0 1.1*max(abs(rx_H_est_plot_BA))]) |
---|
659 | grid on; |
---|
660 | title('B->A Channel Estimates (Magnitude)') |
---|
661 | xlabel('Baseband Frequency (MHz)') |
---|
662 | |
---|
663 | subplot(3,2,4); |
---|
664 | bh = bar(x, fftshift(abs(rx_H_est_plot_BB)),1,'LineWidth', 1); |
---|
665 | shading flat |
---|
666 | set(bh,'FaceColor',[0 0 1]) |
---|
667 | axis([min(x) max(x) 0 1.1*max(abs(rx_H_est_plot_BB))]) |
---|
668 | grid on; |
---|
669 | title('B->B Channel Estimates (Magnitude)') |
---|
670 | xlabel('Baseband Frequency (MHz)') |
---|
671 | |
---|
672 | |
---|
673 | subplot(3,1,3); |
---|
674 | bh = bar(x, fftshift(channel_condition_mat) ,1,'LineWidth', 1); |
---|
675 | shading flat |
---|
676 | set(bh,'FaceColor',[1 0 0]) |
---|
677 | axis([min(x) max(x) 0 1.1]) |
---|
678 | grid on; |
---|
679 | title('Channel Condition') |
---|
680 | xlabel('Baseband Frequency (MHz)') |
---|
681 | |
---|
682 | if(WRITE_PNG_FILES) |
---|
683 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_chanEst', example_mode_string), '-dpng', '-r96', '-painters') |
---|
684 | end |
---|
685 | |
---|
686 | % Pilot phase error estimate |
---|
687 | cf = cf + 1; |
---|
688 | figure(cf); clf; |
---|
689 | subplot(2,1,1) |
---|
690 | plot(pilot_phase_err, 'b', 'LineWidth', 2); |
---|
691 | title('Phase Error Estimates') |
---|
692 | xlabel('OFDM Symbol Index') |
---|
693 | ylabel('Radians') |
---|
694 | axis([1 N_OFDM_SYMS/2 -3.2 3.2]) |
---|
695 | grid on |
---|
696 | |
---|
697 | h = colorbar; |
---|
698 | set(h,'Visible','off'); |
---|
699 | |
---|
700 | subplot(2,1,2) |
---|
701 | imagesc(1:N_OFDM_SYMS, (SC_IND_DATA - N_SC/2), fftshift(pilot_phase_sfo_corr,1)) |
---|
702 | xlabel('OFDM Symbol Index') |
---|
703 | ylabel('Subcarrier Index') |
---|
704 | title('Phase Correction for SFO') |
---|
705 | colorbar |
---|
706 | myAxis = caxis(); |
---|
707 | if(myAxis(2)-myAxis(1) < (pi)) |
---|
708 | caxis([-pi/2 pi/2]) |
---|
709 | end |
---|
710 | |
---|
711 | if(WRITE_PNG_FILES) |
---|
712 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_phaseError', example_mode_string), '-dpng', '-r96', '-painters') |
---|
713 | end |
---|
714 | |
---|
715 | % Symbol constellation |
---|
716 | cf = cf + 1; |
---|
717 | figure(cf); clf; |
---|
718 | |
---|
719 | subplot(2,2,1) |
---|
720 | rx_syms_plot = syms_f_mat_pc_A(SC_IND_DATA,:); |
---|
721 | plot(rx_syms_plot(:),'go','MarkerSize',1) |
---|
722 | axis square |
---|
723 | grid on |
---|
724 | title('Unequalized Rx Symbols RFA') |
---|
725 | myAxis = []; |
---|
726 | myAxis(1,:) = axis(); |
---|
727 | |
---|
728 | subplot(2,2,2) |
---|
729 | rx_syms_plot = syms_f_mat_pc_B(SC_IND_DATA,:); |
---|
730 | plot(rx_syms_plot(:),'go','MarkerSize',1) |
---|
731 | axis square |
---|
732 | grid on |
---|
733 | title('Unequalized Rx Symbols RFB') |
---|
734 | myAxis(2,:) = axis(); |
---|
735 | |
---|
736 | subplot(2,2,1); axis([-max(abs(myAxis(:))), max(abs(myAxis(:))), ... |
---|
737 | -max(abs(myAxis(:))), max(abs(myAxis(:)))]) |
---|
738 | subplot(2,2,2); axis([-max(abs(myAxis(:))), max(abs(myAxis(:))), ... |
---|
739 | -max(abs(myAxis(:))), max(abs(myAxis(:)))]) |
---|
740 | |
---|
741 | |
---|
742 | |
---|
743 | subplot(2,2,3) |
---|
744 | rx_syms_plot = syms_eq_mat_A(SC_IND_DATA,:); |
---|
745 | plot(rx_syms_plot(:),'ro','MarkerSize',1) |
---|
746 | axis square; axis(1.5*[-1 1 -1 1]); |
---|
747 | grid on |
---|
748 | title('Equalized Rx Symbols RFA') |
---|
749 | hold on; |
---|
750 | plot(tx_syms_mat_A(:),'bo'); |
---|
751 | hold off; |
---|
752 | |
---|
753 | subplot(2,2,4) |
---|
754 | rx_syms_plot = syms_eq_mat_B(SC_IND_DATA,:); |
---|
755 | plot(rx_syms_plot(:),'ro','MarkerSize',1) |
---|
756 | axis square; axis(1.5*[-1 1 -1 1]); |
---|
757 | grid on |
---|
758 | title('Equalized Rx Symbols RFB') |
---|
759 | hold on; |
---|
760 | plot(tx_syms_mat_B(:),'bo'); |
---|
761 | hold off; |
---|
762 | |
---|
763 | if(WRITE_PNG_FILES) |
---|
764 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_constellations', example_mode_string), '-dpng', '-r96', '-painters') |
---|
765 | end |
---|
766 | |
---|
767 | |
---|
768 | |
---|
769 | % EVM & SNR |
---|
770 | cf = cf + 1; |
---|
771 | figure(cf); clf; |
---|
772 | |
---|
773 | evm_mat_A = abs(payload_syms_mat_A - tx_syms_mat_A).^2; |
---|
774 | evm_mat_B = abs(payload_syms_mat_B - tx_syms_mat_B).^2; |
---|
775 | aevms_A = mean(evm_mat_A(:)); |
---|
776 | aevms_B = mean(evm_mat_B(:)); |
---|
777 | snr_A = 10*log10(1./aevms_A); |
---|
778 | snr_B = 10*log10(1./aevms_B); |
---|
779 | |
---|
780 | subplot(2,2,1) |
---|
781 | plot(100*evm_mat_A(:),'o','MarkerSize',1) |
---|
782 | axis tight |
---|
783 | hold on |
---|
784 | plot([1 length(evm_mat_A(:))], 100*[aevms_A, aevms_A],'r','LineWidth',4) |
---|
785 | hold off |
---|
786 | xlabel('Data Symbol Index') |
---|
787 | ylabel('EVM (%)'); |
---|
788 | legend('Per-Symbol EVM','Average EVM','Location','NorthWest'); |
---|
789 | |
---|
790 | title('Stream A') |
---|
791 | grid on |
---|
792 | myAxis_mat(1,:) = axis(); |
---|
793 | |
---|
794 | subplot(2,2,2) |
---|
795 | plot(100*evm_mat_B(:),'o','MarkerSize',1) |
---|
796 | axis tight |
---|
797 | hold on |
---|
798 | plot([1 length(evm_mat_B(:))], 100*[aevms_B, aevms_B],'r','LineWidth',4) |
---|
799 | hold off |
---|
800 | xlabel('Data Symbol Index') |
---|
801 | ylabel('EVM (%)'); |
---|
802 | legend('Per-Symbol EVM','Average EVM','Location','NorthWest'); |
---|
803 | title('Stream B') |
---|
804 | grid on |
---|
805 | myAxis_mat(2,:) = axis(); |
---|
806 | |
---|
807 | subplot(2,2,1); axis([min(myAxis_mat(:,1)), max(myAxis_mat(:,2)) ... |
---|
808 | min(myAxis_mat(:,3)), min(myAxis_mat(:,4))]); |
---|
809 | myAxis = axis; |
---|
810 | h = text(round(.05*length(evm_mat_A(:))), 100*aevms_A+ .1*(myAxis(4)-myAxis(3)), sprintf('Effective SINR: %.1f dB', snr_A)); |
---|
811 | set(h,'Color',[1 0 0]) |
---|
812 | set(h,'FontWeight','bold') |
---|
813 | set(h,'FontSize',10) |
---|
814 | set(h,'EdgeColor',[1 0 0]) |
---|
815 | set(h,'BackgroundColor',[1 1 1]) |
---|
816 | subplot(2,2,2); axis([min(myAxis_mat(:,1)), max(myAxis_mat(:,2)) ... |
---|
817 | min(myAxis_mat(:,3)), min(myAxis_mat(:,4))]); |
---|
818 | myAxis = axis; |
---|
819 | h = text(round(.05*length(evm_mat_B(:))), 100*aevms_B+ .1*(myAxis(4)-myAxis(3)), sprintf('Effective SINR: %.1f dB', snr_B)); |
---|
820 | set(h,'Color',[1 0 0]) |
---|
821 | set(h,'FontWeight','bold') |
---|
822 | set(h,'FontSize',10) |
---|
823 | set(h,'EdgeColor',[1 0 0]) |
---|
824 | set(h,'BackgroundColor',[1 1 1]) |
---|
825 | |
---|
826 | |
---|
827 | subplot(2,2,3) |
---|
828 | imagesc(1:N_OFDM_SYMS, (SC_IND_DATA - N_SC/2), 100*fftshift(evm_mat_A,1)) |
---|
829 | |
---|
830 | hold on |
---|
831 | h = line([1,N_OFDM_SYMS],[0,0]); |
---|
832 | set(h,'Color',[1 0 0]) |
---|
833 | set(h,'LineStyle',':') |
---|
834 | hold off |
---|
835 | %myAxis = gca; |
---|
836 | %set(myAxis,'YTickLabel', fftshift(get(myAxis,'YTickLabel'),1)) |
---|
837 | grid on |
---|
838 | xlabel('OFDM Symbol Index') |
---|
839 | ylabel('Subcarrier Index') |
---|
840 | title('Stream A') |
---|
841 | h = colorbar; |
---|
842 | set(get(h,'title'),'string','EVM (%)'); |
---|
843 | myAxis = caxis(); |
---|
844 | if (myAxis(2)-myAxis(1)) < 5 |
---|
845 | caxis([myAxis(1), myAxis(1)+5]) |
---|
846 | end |
---|
847 | |
---|
848 | myAxis_mat = []; |
---|
849 | myAxis_mat(1,:) = caxis(); |
---|
850 | |
---|
851 | subplot(2,2,4) |
---|
852 | imagesc(1:N_OFDM_SYMS, (SC_IND_DATA - N_SC/2), 100*fftshift(evm_mat_B,1)) |
---|
853 | |
---|
854 | hold on |
---|
855 | h = line([1,N_OFDM_SYMS],[0,0]); |
---|
856 | set(h,'Color',[1 0 0]) |
---|
857 | set(h,'LineStyle',':') |
---|
858 | hold off |
---|
859 | %myAxis = gca; |
---|
860 | %set(myAxis,'YTickLabel', fftshift(get(myAxis,'YTickLabel'),1)) |
---|
861 | grid on |
---|
862 | xlabel('OFDM Symbol Index') |
---|
863 | ylabel('Subcarrier Index') |
---|
864 | title('Stream B') |
---|
865 | h = colorbar; |
---|
866 | set(get(h,'title'),'string','EVM (%)'); |
---|
867 | myAxis = caxis(); |
---|
868 | if (myAxis(2)-myAxis(1)) < 5 |
---|
869 | caxis([myAxis(1), myAxis(1)+5]) |
---|
870 | end |
---|
871 | |
---|
872 | myAxis_mat(2,:) = caxis(); |
---|
873 | |
---|
874 | subplot(2,2,3); caxis([min(myAxis_mat(:,1)), max(myAxis_mat(:,2))]) |
---|
875 | |
---|
876 | if(WRITE_PNG_FILES) |
---|
877 | print(gcf,sprintf('wl_mimo_ofdm_plots_%s_evm', example_mode_string), '-dpng', '-r96', '-painters') |
---|
878 | end |
---|
879 | |
---|
880 | %% Calculate Rx stats |
---|
881 | |
---|
882 | sym_errs = sum(tx_data ~= rx_data); |
---|
883 | bit_errs = length(find(dec2bin(bitxor(tx_data, rx_data),8) == '1')); |
---|
884 | rx_evm = sqrt(sum((real(rx_syms) - real(tx_syms)).^2 + (imag(rx_syms) - imag(tx_syms)).^2)/(length(SC_IND_DATA) * N_OFDM_SYMS)); |
---|
885 | |
---|
886 | fprintf('\nResults:\n'); |
---|
887 | fprintf('Num Bytes: %d\n', N_DATA_SYMS * log2(MOD_ORDER) / 8); |
---|
888 | fprintf('Sym Errors: %d (of %d total symbols)\n', sym_errs, N_DATA_SYMS); |
---|
889 | fprintf('Bit Errors: %d (of %d total bits)\n', bit_errs, N_DATA_SYMS * log2(MOD_ORDER)); |
---|
890 | |
---|
891 | cfo_est_lts = rx_cfo_est_lts*(SAMP_FREQ/INTERP_RATE); |
---|
892 | cfo_est_phaseErr = mean(diff(unwrap(pilot_phase_err)))/(4e-6*2*pi); |
---|
893 | cfo_total_ppm = ((cfo_est_lts + cfo_est_phaseErr) / ((2.412+(.005*(CHANNEL-1)))*1e9)) * 1e6; |
---|
894 | |
---|
895 | fprintf('CFO Est: %3.2f kHz (%3.2f ppm)\n', (cfo_est_lts + cfo_est_phaseErr)*1e-3, cfo_total_ppm); |
---|
896 | fprintf(' LTS CFO Est: %3.2f kHz\n', cfo_est_lts*1e-3); |
---|
897 | fprintf(' Phase Error Residual CFO Est: %3.2f kHz\n', cfo_est_phaseErr*1e-3); |
---|
898 | |
---|
899 | if DO_APPLY_SFO_CORRECTION |
---|
900 | drift_sec = pilot_slope_mat / (2*pi*312500); |
---|
901 | sfo_est_ppm = 1e6*mean((diff(drift_sec) / 4e-6)); |
---|
902 | sfo_est = sfo_est_ppm*20; |
---|
903 | fprintf('SFO Est: %3.2f Hz (%3.2f ppm)\n', sfo_est, sfo_est_ppm); |
---|
904 | |
---|
905 | end |
---|
906 | |
---|
907 | |
---|