Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(250)

Delta Between Two Patch Sets: src/devices/wifi/wscript

Issue 690041: new OFDM physical layer model
Left Patch Set: Created 14 years ago
Right Patch Set: remove dependency from base class Created 13 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/devices/wifi/nist-error-rate-model.cc ('k') | src/devices/wifi/yans-error-rate-model.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- 1 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2 2
3 def build(bld): 3 def build(bld):
4 obj = bld.create_ns3_module('wifi', ['node']) 4 obj = bld.create_ns3_module('wifi', ['node'])
5 obj.source = [ 5 obj.source = [
6 'wifi-channel.cc', 6 'wifi-channel.cc',
7 'wifi-mode.cc', 7 'wifi-mode.cc',
8 'ssid.cc', 8 'ssid.cc',
9 'wifi-phy.cc', 9 'wifi-phy.cc',
10 'wifi-phy-state-helper.cc', 10 'wifi-phy-state-helper.cc',
11 'error-rate-model.cc', 11 'error-rate-model.cc',
12 'yans-error-rate-model.cc', 12 'yans-error-rate-model.cc',
13 'nist-error-rate-model.cc', 13 'nist-error-rate-model.cc',
14 'dsss-error-rate-model.cc',
14 'interference-helper.cc', 15 'interference-helper.cc',
15 'interference-helper-tx-duration-test.cc', 16 'interference-helper-tx-duration-test.cc',
16 'yans-wifi-phy.cc', 17 'yans-wifi-phy.cc',
17 'yans-wifi-channel.cc', 18 'yans-wifi-channel.cc',
18 'wifi-mac-header.cc', 19 'wifi-mac-header.cc',
19 'wifi-mac-trailer.cc', 20 'wifi-mac-trailer.cc',
20 'mac-low.cc', 21 'mac-low.cc',
21 'wifi-mac-queue.cc', 22 'wifi-mac-queue.cc',
22 'mac-tx-middle.cc', 23 'mac-tx-middle.cc',
23 'mac-rx-middle.cc', 24 'mac-rx-middle.cc',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'minstrel-wifi-manager.h', 90 'minstrel-wifi-manager.h',
90 'wifi-mac.h', 91 'wifi-mac.h',
91 'adhoc-wifi-mac.h', 92 'adhoc-wifi-mac.h',
92 'nqsta-wifi-mac.h', 93 'nqsta-wifi-mac.h',
93 'nqap-wifi-mac.h', 94 'nqap-wifi-mac.h',
94 'wifi-phy.h', 95 'wifi-phy.h',
95 'supported-rates.h', 96 'supported-rates.h',
96 'error-rate-model.h', 97 'error-rate-model.h',
97 'yans-error-rate-model.h', 98 'yans-error-rate-model.h',
98 'nist-error-rate-model.h', 99 'nist-error-rate-model.h',
100 'dsss-error-rate-model.h',
99 'dca-txop.h', 101 'dca-txop.h',
100 'wifi-mac-header.h', 102 'wifi-mac-header.h',
101 'qadhoc-wifi-mac.h', 103 'qadhoc-wifi-mac.h',
102 'qap-wifi-mac.h', 104 'qap-wifi-mac.h',
103 'qsta-wifi-mac.h', 105 'qsta-wifi-mac.h',
104 'qos-utils.h', 106 'qos-utils.h',
105 'edca-txop-n.h', 107 'edca-txop-n.h',
106 'msdu-aggregator.h', 108 'msdu-aggregator.h',
107 'amsdu-subframe-header.h', 109 'amsdu-subframe-header.h',
108 'qos-tag.h', 110 'qos-tag.h',
(...skipping 11 matching lines...) Expand all
120 ] 122 ]
121 123
122 if bld.env['ENABLE_GSL']: 124 if bld.env['ENABLE_GSL']:
123 obj.uselib = 'GSL GSLCBLAS M' 125 obj.uselib = 'GSL GSLCBLAS M'
124 126
125 obj = bld.create_ns3_program('wifi-phy-test', 127 obj = bld.create_ns3_program('wifi-phy-test',
126 ['core', 'simulator', 'mobility', 'node', 'wifi']) 128 ['core', 'simulator', 'mobility', 'node', 'wifi'])
127 obj.source = 'wifi-phy-test.cc' 129 obj.source = 'wifi-phy-test.cc'
128 130
129 131
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b