-
Notifications
You must be signed in to change notification settings - Fork 5
/
csma_ca_sm_test.py
337 lines (277 loc) · 12.9 KB
/
csma_ca_sm_test.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#!/usr/bin/env python
# /////////////////////////////////////////////////////////////////////////////
# CSMA/CA Test Script
#
# FuNLab
# University of Washington
# Morgan Redfield
#
# This script sets up a UHD flow graph that implements OFDM TX and RX.
# The sending and receiving of packets is managed by a CSMA/CA MAC.
#
# This script allows the CSMA/CA MAC to be tested in various ways.
#
# /////////////////////////////////////////////////////////////////////////////
from gnuradio import gr, gru, blks2
from gnuradio import uhd
#from gnuradio import usrp
from gnuradio import eng_notation
from gnuradio.eng_option import eng_option
from optparse import OptionParser
import time
import struct
import sys
import os
# from current dir
from transmit_path import transmit_path
from receive_path import receive_path
#using state machine MAC, not while loop MAC (maybe this will work better?)
from csma_ca_mac_sm import *
# /////////////////////////////////////////////////////////////////////////////
# the flow graph
# /////////////////////////////////////////////////////////////////////////////
class usrp_graph(gr.top_block):
def __init__(self, callback, options):
gr.top_block.__init__(self)
self._tx_freq = options.tx_freq # tranmitter's center frequency
self._tx_gain = options.tx_gain # transmitter's gain
self._samp_rate = options.samp_rate # sample rate for USRP
self._rx_freq = options.rx_freq # receiver's center frequency
self._rx_gain = options.rx_gain # receiver's gain
if self._tx_freq is None:
sys.stderr.write("-f FREQ or --freq FREQ or --tx-freq FREQ must be specified\n")
raise SystemExit
if self._rx_freq is None:
sys.stderr.write("-f FREQ or --freq FREQ or --rx-freq FREQ must be specified\n")
raise SystemExit
# Set up USRP sink and source
self._setup_usrp_sink()
self._setup_usrp_source()
# Set center frequency of USRP
ok = self.set_freq(self._tx_freq)
if not ok:
print "Failed to set Tx frequency to %s" % (eng_notation.num_to_str(self._tx_freq),)
raise ValueError
self.txpath = transmit_path(options)
self.rxpath = receive_path(callback, options)
self.rx_valve = gr.copy(gr.sizeof_gr_complex)
self.connect(self.txpath, self.u_snk)
self.connect(self.u_src, self.rx_valve, self.rxpath)
if options.verbose:
self._print_verbage()
if options.show_rx_gain_range:
print "RX gain range: ", self.u_src.get_gain_range()
if options.show_tx_gain_range:
print "TX gain range: ", self.u_snk.get_gain_range()
def carrier_sensed(self):
"""
Return True if the receive path thinks there's carrier
"""
return self.rxpath.carrier_sensed()
def _setup_usrp_sink(self):
"""
Creates a USRP sink, determines the settings for best bitrate,
and attaches to the transmitter's subdevice.
"""
self.u_snk = uhd.usrp_sink(device_addr="", io_type=uhd.io_type.COMPLEX_FLOAT32, num_channels=1)
self.u_snk.set_samp_rate(self._samp_rate)
self.u_snk.set_subdev_spec("", 0)
g = self.u_snk.get_gain_range()
#set the gain to the midpoint if it's currently out of bounds
if self._tx_gain > g.stop() or self._tx_gain < g.start():
self._tx_gain = (g.stop() + g.start()) / 2
self.u_snk.set_gain(self._tx_gain)
def _setup_usrp_source(self):
self.u_src = uhd.usrp_source(device_addr="", io_type=uhd.io_type.COMPLEX_FLOAT32,
num_channels=1)
self.u_src.set_antenna("TX/RX", 0)
self.u_src.set_subdev_spec("",0)
self.u_src.set_samp_rate(self._samp_rate)
g = self.u_src.get_gain_range()
#set the gain to the midpoint if it's currently out of bounds
if self._rx_gain > g.stop() or self._rx_gain < g.start():
self._rx_gain = (g.stop() + g.start()) / 2
self.u_src.set_gain(self._rx_gain)
def set_freq(self, target_freq):
"""
Set the center frequency we're interested in.
@param target_freq: frequency in Hz
@rypte: bool
Tuning is a two step process. First we ask the front-end to
tune as close to the desired frequency as it can. Then we use
the result of that operation and our target_frequency to
determine the value for the digital up converter.
"""
r_snk = self.u_snk.set_center_freq(target_freq, 0)
r_src = self.u_src.set_center_freq(target_freq, 0)
if r_snk and r_src:
return True
return False
def add_options(normal, expert):
"""
Adds usrp-specific options to the Options Parser
"""
add_freq_option(normal)
normal.add_option("-v", "--verbose", action="store_true", default=False)
expert.add_option("", "--rx-freq", type="eng_float", default=None,
help="set Rx frequency to FREQ [default=%default]", metavar="FREQ")
expert.add_option("", "--tx-freq", type="eng_float", default=None,
help="set Tx frequency to FREQ [default=%default]", metavar="FREQ")
expert.add_option("-r", "--samp_rate", type="intx", default=800000,
help="set sample rate for USRP to SAMP_RATE [default=%default]")
normal.add_option("", "--rx-gain", type="eng_float", default=14, metavar="GAIN",
help="set receiver gain in dB [default=%default]. See also --show-rx-gain-range")
normal.add_option("", "--show-rx-gain-range", action="store_true", default=False,
help="print min and max Rx gain available")
normal.add_option("", "--tx-gain", type="eng_float", default=11.75, metavar="GAIN",
help="set transmitter gain in dB [default=%default]. See also --show-tx-gain-range")
normal.add_option("", "--show-tx-gain-range", action="store_true", default=False,
help="print min and max Tx gain available")
expert.add_option("", "--snr", type="eng_float", default=30,
help="set the SNR of the Rx channel in dB [default=%default]")
# Make a static method to call before instantiation
add_options = staticmethod(add_options)
def _print_verbage(self):
"""
Prints information about the transmit path
"""
print
print "PHY parameters"
print "samp_rate %3d" % (self._samp_rate)
print "Tx Frequency: %s" % (eng_notation.num_to_str(self._tx_freq))
print "Tx antenna gain %s" % (self._tx_gain)
print "Rx antenna gain %s" % (self._rx_gain)
def add_freq_option(parser):
"""
Hackery that has the -f / --freq option set both tx_freq and rx_freq
"""
def freq_callback(option, opt_str, value, parser):
parser.values.rx_freq = value
parser.values.tx_freq = value
if not parser.has_option('--freq'):
parser.add_option('-f', '--freq', type="eng_float",
action="callback", callback=freq_callback,
help="set Tx and/or Rx frequency to FREQ [default=%default]",
metavar="FREQ")
# /////////////////////////////////////////////////////////////////////////////
# main
# /////////////////////////////////////////////////////////////////////////////
pkts_rcvd = []
EOF_rcvd = False
num_acks = 0
def rx_callback(payload):
global pkts_rcvd
global EOF_rcvd
global tx_failures
global num_acks
#print payload
if payload == "R:EOF":
EOF_rcvd = True
if payload[:2] == "R:":
pkts_rcvd.append(payload)
elif payload == "T:ACK":
num_acks += 1
def main():
global pkts_rcvd
global EOF_rcvd
global num_acks
parser = OptionParser (option_class=eng_option, conflict_handler="resolve")
expert_grp = parser.add_option_group("Expert")
parser.add_option("-m", "--modulation", type="choice", choices=['bpsk', 'qpsk'],
default='bpsk',
help="Select modulation from: bpsk, qpsk [default=%%default]")
parser.add_option("-v","--verbose", action="store_true", default=False)
parser.add_option("-p","--packets", type="int", default = 40,
help="set number of packets to send [default=%default]")
parser.add_option("", "--address", type="string", default = None,
help="set the address of the node (addresses are a single char) [default=%default]")
expert_grp.add_option("-c", "--carrier-threshold", type="eng_float", default=-20,
help="set carrier detect threshold (dB) [default=%default]")
parser.add_option("", "--pkt-gen-time", type="eng_float", default=.5,
help="set the time between sending each packet (s) [default=%default]")
parser.add_option("", "--pkt-padding", type="int", default=0,
help="pad packet with pkt-padding number of extra chars [default=%default]")
parser.add_option("", "--test-time", type="int", default=500,
help="number of seconds to run the test for [default=%default]")
usrp_graph.add_options(parser, expert_grp)
transmit_path.add_options(parser, expert_grp)
receive_path.add_options(parser, expert_grp)
blks2.ofdm_mod.add_options(parser, expert_grp)
blks2.ofdm_demod.add_options(parser, expert_grp)
cs_mac.add_options(parser, expert_grp)
(options, args) = parser.parse_args ()
if len(args) != 0:
parser.print_help(sys.stderr)
sys.exit(1)
if options.rx_freq is None or options.tx_freq is None:
sys.stderr.write("You must specify -f FREQ or --freq FREQ\n")
parser.print_help(sys.stderr)
sys.exit(1)
if options.address is None:
sys.stderr.write("You must specify a node address\n")
parser.print_help(sys.stderr)
sys.exit(1)
# Attempt to enable realtime scheduling
r = gr.enable_realtime_scheduling()
if r == gr.RT_OK:
realtime = True
else:
realtime = False
print "Note: failed to enable realtime scheduling"
pkts_sent = 0
# instantiate the MAC
mac = cs_mac(options, rx_callback)
# build the graph (PHY)
tx_failures = []
tb = usrp_graph(mac.phy_rx_callback, options)
mac.set_flow_graph(tb) # give the MAC a handle for the PHY
mac.set_error_array(tx_failures)
print
print "address: %s" % (options.address)
print
print "modulation: %s" % (options.modulation,)
print "freq: %s" % (eng_notation.num_to_str(options.tx_freq))
tb.rxpath.set_carrier_threshold(options.carrier_threshold)
print "Carrier sense threshold:", options.carrier_threshold, "dB"
tb.start() # Start executing the flow graph (runs in separate threads)
mac.start()
print time.strftime("%X")
start_time = time.clock()
while (pkts_sent < options.packets + 3):# or not EOF_rcvd):
#if options.verbose:
# print "give a new packet to the MAC"
if pkts_sent > options.packets:
mac.new_packet('x', "EOF")
else:
mac.new_packet('x', str(pkts_sent).zfill(3) + options.pkt_padding * "k") # run the tests
pkts_sent += 1
#while not EOF_rcvd:
# time.sleep(options.pkt_gen_time)
while time.clock() - start_time < 2*options.test_time:
pass
print time.strftime("%X")
mac.stop()
mac.wait()
print "total txrx time: ", time.clock() - start_time
#do stuff with the measurement results
print
print "this node sent: ", pkts_sent, " packets"
print "there were: ", len(tx_failures), " packets that were not successfully sent"
#print "this node received: ", num_acks, " ACK packets"
print "this node rcvd: ", len(set(pkts_rcvd)), " packets"
print "there were: ", len(pkts_rcvd) - len(set(pkts_rcvd)), " spurious packet retransmissions"
print "collisions: ", mac.collisions
if options.pkt_padding != 0:
print "the packets this node sent were of length: ", len(str(pkts_sent).zfill(3) + options.pkt_padding * "k") + 2 # + 2 for the address chars
#for item in pkts_rcvd:
# print "\t", item
#print "succesfully sent the following packets"
#for item in mac.sent_pkts:
# print "\t", item
tb.stop() # but if it does, tell flow graph to stop.
tb.wait() # wait for it to finish
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
pass