source: ResearchApps/PHY/WARPLAB/WARPLab_v05_2/M_Code_Examples/warplab_siso_example_TxRxAGC_TonePreamble.m

Last change on this file was 1311, checked in by mduarte, 15 years ago

Adding files for WARPLab release 05

File size: 15.0 KB
Line 
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2% Transmitting and Receiving Data using WARPLab with Automatic Gain Control
3% (SISO Configuration)
4%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5% Before looking at this code we recommend getting familiar with the
6% warplab_siso_example_TxRx.m code which doesn't use AGC hence it is easier
7% to understand.
8
9% The specific steps implemented in this script are the following
10
11% 0. Initializaton and definition of parameters
12% 1. Generate a vector of samples to transmit and send the samples to the
13% WARP board (Sample Frequency is 40MHz)
14% 2. Prepare WARP boards for transmission and reception and send trigger to
15% start transmission and reception (trigger is the SYNC packet)
16% 3. Read the received samples from the WARP board
17% 4. Read values related to AGC
18% 5. Reset and disable the boards
19% 6. Plot the transmitted and received data and close sockets
20
21%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
22% 0. Initializaton and definition of parameters
23%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
24%Load some global definitions (packet types, etc.)
25warplab_defines
26
27% Create Socket handles and intialize nodes
28[socketHandles, packetNum] = warplab_initialize;
29
30% Separate the socket handles for easier access
31% The first socket handle is always the magic SYNC
32% The rest of the handles are the handles to the WARP nodes
33udp_Sync = socketHandles(1);
34udp_node1 = socketHandles(2);
35udp_node2 = socketHandles(3);
36
37% Define WARPLab parameters.
38% For this experiment node 1 will be set as the transmitter and node
39% 2 will be set as the receiver (this is done later in the code), hence,
40% there is no need to define receive gains for node 1 and there is no
41% need to define transmitter gains for node 2.
42TxDelay = 0; % Number of noise samples per Rx capture. In [0:2^14]
43TxLength = 2^14-1; % Length of transmission. In [0:2^14-1-TxDelay]
44CarrierChannel = 12; % Channel in the 2.4 GHz band. In [1:14]
45Node1_Radio2_TxGain_BB = 1; % Tx Baseband Gain. In [0:3]
46Node1_Radio2_TxGain_RF = 25; % Tx RF Gain. In [0:63]
47TxMode = 0; % Transmission mode. In [0:1]
48            % 0: Single Transmission
49            % 1: Continuous Transmission. Tx board will continue
50            % transmitting the vector of samples until the user manually
51            % disables the transmitter.
52Node2_MGC_AGC_Select = 1;   % Set MGC_AGC_Select=1 to enable Automatic Gain Control (AGC).
53                            % Set MGC_AGC_Select=0 to enable Manual Gain Control (MGC).
54                            % By default, the nodes are set to MGC.
55Node2_TargetdBmAGC = -10; % AGC Target dBm. A larger target value will
56                          % result in larger Rx gains set by AGC. This is
57                          % the value we tune if AGC is not setting gains
58                          % correctly.
59Node2_NoiseEstdBmAGC = -95; % Noise power in dBm. -95dBm is a reasonable
60            % value for wireless. If AGC is not setting gains correctly
61            % this value may need to be modified. Usually we first try to
62            % change the TargetdBmAGC  before changing the NoiseEstdBmAGC
63Node2_Thresh1 = -90; 
64Node2_Thresh2 = -53;
65Node2_Thresh3 = -43;
66% Change format of Thresholds so they can be correctly understood by
67% the FPGA:
68Node_2Thresholds = uint32(Node2_Thresh3+2^8)*2^16+uint32(Node2_Thresh2+2^8)*2^8+uint32(Node2_Thresh1+2^8);
69% The three thresholds above are used to set the Rx RF gain. If the RSSI in
70% dBm of the received signal is less than -90 then the AGC declares the
71% signal to be too low and quits. If the RSSI in dBm of the received signal
72% is between -53 and -90 then the AGC selects the largest RF gain : 3. If
73% the RSSI dBm is between -43 and -53 then the AGC sets medium RF gain : 2. If
74% the RSSI dBm is larger than -43 then the AGC sets low RF gain :1.
75% If AGC is no setting gains correctly then these three thresholds may need
76% to be modified. Usually we first try to change the TargetdBmAGC  before
77% changing the Thresholds.
78% Remember there are 3 possible Rx RF gains: 1,2,3. Each step corresponds
79% to 15dB: Changing the gain from 2 to 3 increases the Rx gain by 15 dB.
80Node2_AGCTrigger_nsamps_delay = 50; % The AGC core should not be started before the
81% signal arrives. If TxDelay=0 then Tx and Rx should start at exactly the
82% same time (upon reception of magic sync) however, because of jitter in
83% reception of the magic sync, it may happed that the Rx gets the magic
84% sync before the Tx. If this is the case then the AGC will set wrong gains
85% because AGC will use RSSI values that are measured before reception of the signal.
86% To avoid this we can delay the trigger of the AGC core by
87% Node2_AGCTrigger_nsamps_delay samples relative to the reception of the
88% magic sync. We recommend to set this value between 0 and 50 samples. We
89% have not observed magic sync jitters greater than 50 samples.
90Node2_Enable_DCOffset_Correction = 1; % Enable/disable correction of DC Offsets (DCO).
91% Node2_Enable_DCOffset_Correction = 0; Disable correction of DC Offsets at
92% AGC
93% Node2_Enable_DCOffset_Correction = 1; Enable correction of DC Offsets at
94% AGC
95% Change of Rx gains by AGC may result in DC offsets. The AGC can correct
96% these offsets but the user must be very careful on the choice of preamble
97% used for AGC. For DCO correction at AGC to work properly the first 320
98% samples must correspond to a periodic signal with an average (DC) of zero
99% over 32 consecutive samples, this will generate the right signal required
100% by AGC DCO correction for a sampling frequency of 40 MHz. AGC DCO
101% correction can be disabled by setting Node2_Enable_DCOffset_Correction=0,
102% in this case there is no requirement for the periodicity of the
103% preamble used for AGC.
104
105
106% NOTES ON AGC:
107% 1.    As soon as AGC is triggered, it takes the AGC core
108% approximately 250 samples (at 40MHz sampling frequency) to set gains. If
109% DCO correction at AGC is enabled it takes the AGC an extra 32 samples to
110% filter DCO. This means that the first 250 samples received (282 when using DCO
111% correction) may not contain useful data because during reception of these
112% samples Rx gains (and DCO correction) were not set correctly.
113% 2.     The first 250 samples must be representative of the rest of signal
114% being transmitted (similar bandwidth and amplitude), otherwise the gains
115% set by the AGC will work for the first 250 samples but will be wrong
116% (causing saturation or underflow) for the rest of the signal.
117
118
119% Download the WARPLab parameters to the WARP nodes.
120% The nodes store the TxDelay, TxLength, and TxMode parameters in
121% registers defined in the WARPLab sysgen model. The nodes set radio
122% related parameters CarrierChannel, TxGains, and RxGains, using the
123% radio controller functions.
124
125% The TxDelay, TxLength, and TxMode parameters need to be known at the transmitter;
126% the receiver doesn't require knowledge of these parameters (the receiver
127% will always capture 2^14 samples). For this exercise node 1 will be set as
128% the transmitter (this is done later in the code). Since TxDelay, TxLength and
129% TxMode are only required at the transmitter we download the TxDelay, TxLength and
130% TxMode parameters only to the transmitter node (node 1).
131warplab_writeRegister(udp_node1,TX_DELAY,TxDelay);
132warplab_writeRegister(udp_node1,TX_LENGTH,TxLength);
133warplab_writeRegister(udp_node1,TX_MODE,TxMode);
134% The CarrierChannel parameter must be downloaded to all nodes 
135warplab_setRadioParameter(udp_node1,CARRIER_CHANNEL,CarrierChannel);
136warplab_setRadioParameter(udp_node2,CARRIER_CHANNEL,CarrierChannel);
137% Node 1 will be set as the transmitter so download Tx gains to node 1.
138warplab_setRadioParameter(udp_node1,RADIO2_TXGAINS,(Node1_Radio2_TxGain_RF + Node1_Radio2_TxGain_BB*2^16));
139% Node 2 will be set as the receiver so download AGC related parameters to node 2.
140warplab_setAGCParameter(udp_node2,MGC_AGC_SEL, Node2_MGC_AGC_Select); % AGC mode is enabled when
141% Node2_MGC_AGC_Select = 1. THIS COMMAND RESETS AND INITIALIZES THE AGC. THIS COMMAND INITIALIZES
142% AGC PARAMETER TO DEFAULTS. Default values are hard coded in warplab C code.
143% The default values can be changed as is done in the 5 lines below.
144warplab_setAGCParameter(udp_node2,SET_AGC_TARGET_dBm, Node2_TargetdBmAGC);
145warplab_setAGCParameter(udp_node2,SET_AGC_NOISEEST_dBm, Node2_NoiseEstdBmAGC);
146warplab_setAGCParameter(udp_node2,SET_AGC_THRESHOLDS, Node_2Thresholds);
147warplab_setAGCParameter(udp_node2,SET_AGC_TRIG_DELAY, Node2_AGCTrigger_nsamps_delay);
148warplab_setAGCParameter(udp_node2,SET_AGC_DCO_EN_DIS, Node2_Enable_DCOffset_Correction);
149
150%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
151% 1. Generate a vector of samples to transmit and send the samples to the
152% WARP board (Sample Frequency is 40MHz)
153%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
154t = 0:(1/40e6):TxLength/40e6 - 1/40e6; % Create time vector.
155
156% Create a signal to transmit, the signal is a function of the time vector
157% 't' the signal can be real or complex.
158
159% The signal must meet the following requirements:
160% - Signal to transmit must be a row vector.
161% - The amplitude of the real part must be in [-1:1] and the amplitude
162% of the imaginary part must be in [-1:1].
163% - Highest frequency component is limited to 9.5 MHz (signal bandwidth
164% is limited to 19 MHz)
165% - Lowest frequency component is limited to 30 kHz
166
167Node1_Radio2_TxData = exp(t*j*2*pi*2.5e6); % Generate 2.5 MHz signal.
168% Notice that with a sampling frequency of 40 MHz this signal is periodic
169% every 32 samples and has an average DC of zero. Hence, DC Offset
170% correction will work for this signal.
171
172% Download the samples to be transmitted
173warplab_writeSMWO(udp_node1, RADIO2_TXDATA, Node1_Radio2_TxData);
174
175%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
176% 2. Prepare WARP boards for transmission and reception and send trigger to
177% start transmission and reception (trigger is the SYNC packet)
178%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
179% The following lines of code set node 1 as transmitter and node 2 as
180% receiver; transmission and capture are triggered by sending the SYNC
181% packet.
182
183% Enable transmitter radio path in radio 2 in node 1 (enable radio 2 in
184% node 1 as transmitter)
185warplab_sendCmd(udp_node1, RADIO2_TXEN, packetNum);
186
187% Enable transmission of node1's radio 2 Tx buffer (enable transmission
188% of samples stored in radio 2 Tx Buffer in node 1)
189warplab_sendCmd(udp_node1, RADIO2TXBUFF_TXEN, packetNum);
190
191% Enable receiver radio path in radio 2 in node 2 (enable radio 2 in
192% node 2 as receiver)
193warplab_sendCmd(udp_node2, RADIO2_RXEN, packetNum);
194
195% Enable capture in node2's radio 2 Rx Buffer (enable radio 2 rx buffer in
196% node 2 for storage of samples)
197warplab_sendCmd(udp_node2, RADIO2RXBUFF_RXEN, packetNum);
198
199% Prime transmitter state machine in node 1. Node 1 will be
200% waiting for the SYNC packet. Transmission from node 1 will be triggered
201% when node 1 receives the SYNC packet.
202warplab_sendCmd(udp_node1, TX_START, packetNum);
203
204% Prime receiver state machine in node 2. Node 2 will be waiting
205% for the SYNC packet. Capture at node 2 will be triggered when node 2
206% receives the SYNC packet.
207warplab_sendCmd(udp_node2, RX_START, packetNum);
208
209% Send the SYNC packet
210warplab_sendSync(udp_Sync);
211
212%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
213% 3. Read the received samples from the WARP board
214%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
215% Read back the received samples
216[Node2_Radio2_RawRxData] = warplab_readSMRO(udp_node2, RADIO2_RXDATA, TxLength+TxDelay);
217% Process the received samples to obtain meaningful data
218[Node2_Radio2_RxData,Node2_Radio2_RxOTR] = warplab_processRawRxData(Node2_Radio2_RawRxData);
219
220%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
221% 4. Read values related to AGC
222%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
223% Read the sample number that corresponds to AGC being done setting gains
224[Node2_AGC_Set_Addr] = warplab_readAGCValue(udp_node2, READ_AGC_DONE_ADDR);
225% Received samples are stored in Received buffer, when AGC is done the
226% address of the sample being written at that moment is stored, this
227% address is Node2_AGC_Set_Addr. This means that samples after
228% Node2_AGC_Set_Addr sample are applied the Rx Gains computed by AGC. From
229% sample zero the Node2_AGC_Set_Addr the amplitude of the received signal
230% may vary a lot because during this time the AGC was not done setting
231% gains.
232
233% Read the value of the RSSI that corresponds to AGC being done setting
234% gains. When AGC is done the currrent RSSI value measured by node 2 radio2
235% is stored in a register which can be read as shown below.
236[Node2_Radio2_AGC_Set_RSSI] = warplab_readAGCValue(udp_node2, READ_RADIO2AGCDONERSSI);
237
238% Read the gains set by AGC
239[Node2_Raw_AGC_Set_Gains] = warplab_readAGCValue(udp_node2, READ_AGC_GAINS);
240[Node2_GainsRF,Node2_GainsBB] = warplab_processRawAGCGainsData(Node2_Raw_AGC_Set_Gains);
241% Since only radio 2 was used then we only care about the second entry in
242% Node2_GainsRF and Node2_GainsBB vectors
243Node2_Radio2_GainsRF = Node2_GainsRF(2);
244Node2_Radio2_GainsBB = Node2_GainsBB(2);
245
246%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
247% 5. Reset and disable the boards
248%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
249% Set radio 2 Tx buffer in node 1 back to Tx disabled mode
250warplab_sendCmd(udp_node1, RADIO2TXBUFF_TXDIS, packetNum);
251
252% Disable the transmitter radio
253warplab_sendCmd(udp_node1, RADIO2_TXDIS, packetNum);
254
255% Set radio 2 Rx buffer in node 2 back to Rx disabled mode
256warplab_sendCmd(udp_node2, RADIO2RXBUFF_RXDIS, packetNum);
257
258% Disable the receiver radio
259warplab_sendCmd(udp_node2, RADIO2_RXDIS, packetNum);
260
261% Resets Rx gains to default values of RF Gain of 3 and Baseband gain of
262% 26. Sets AGC ready for a new capture.
263warplab_sendCmd(udp_node2, AGC_RESET, packetNum);
264
265%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
266% 6. Plot the transmitted and received data and close sockets
267%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
268figure;
269subplot(2,2,1);
270plot(real(Node1_Radio2_TxData));
271title('Tx Node 1 Radio 2 I');
272xlabel('n (samples)'); ylabel('Amplitude');
273axis([0 2^14 -1 1]); % Set axis ranges.
274subplot(2,2,2);
275plot(imag(Node1_Radio2_TxData));
276title('Tx Node 1 Radio 2 Q');
277xlabel('n (samples)'); ylabel('Amplitude');
278axis([0 2^14 -1 1]); % Set axis ranges.
279subplot(2,2,3);
280plot(real(Node2_Radio2_RxData));
281title('Rx Node 2 Radio 2 I');
282xlabel('n (samples)'); ylabel('Amplitude');
283axis([0 2^14 -1 1]); % Set axis ranges.
284subplot(2,2,4);
285plot(imag(Node2_Radio2_RxData));
286title('Rx Node 2 Radio 2 Q');
287xlabel('n (samples)'); ylabel('Amplitude');
288axis([0 2^14 -1 1]); % Set axis ranges.
289
290% Close sockets
291pnet('closeall');
Note: See TracBrowser for help on using the repository browser.