-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update MilliCar to ns-3.36.1 and ns3-mmwave latest updates (#174)
* Delete classes that have been integrated in ns-3 main repo * Update method name and delete comments * Make beamforming model configurable by the user * Init new channel model config * Add method to create spectrum channel * Add CMakeLists.txt * Add CMakeLists for examples * Fix file for CI configuration * Fix examples * Fix warnings on pointers * Change code to support changes of spectrum channel model * Delete wscript * Remove mmwave-vehicular-link-adaptation-example Co-authored-by: tommasozugno <tommasozugno@gmail.com>
- Loading branch information
1 parent
51f2cdd
commit b81a765
Showing
26 changed files
with
383 additions
and
3,920 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
set(source_files | ||
model/mmwave-vehicular.cc | ||
model/mmwave-sidelink-spectrum-phy.cc | ||
model/mmwave-sidelink-spectrum-signal-parameters.cc | ||
model/mmwave-sidelink-phy.cc | ||
model/mmwave-sidelink-mac.cc | ||
model/mmwave-vehicular-net-device.cc | ||
model/mmwave-vehicular-antenna-array-model.cc | ||
helper/mmwave-vehicular-helper.cc | ||
helper/mmwave-vehicular-traces-helper.cc | ||
) | ||
|
||
set(test_sources | ||
test/mmwave-vehicular-spectrum-phy-test.cc | ||
test/mmwave-vehicular-rate-test.cc | ||
test/mmwave-vehicular-interference-test.cc | ||
) | ||
|
||
set(header_files | ||
model/mmwave-vehicular.h | ||
model/mmwave-sidelink-spectrum-phy.h | ||
model/mmwave-sidelink-spectrum-signal-parameters.h | ||
model/mmwave-sidelink-phy.h | ||
model/mmwave-sidelink-mac.h | ||
model/mmwave-sidelink-sap.h | ||
model/mmwave-vehicular-net-device.h | ||
model/mmwave-vehicular-antenna-array-model.h | ||
helper/mmwave-vehicular-helper.h | ||
helper/mmwave-vehicular-traces-helper.h | ||
) | ||
|
||
build_lib( | ||
LIBNAME millicar | ||
SOURCE_FILES ${source_files} | ||
HEADER_FILES ${header_files} | ||
LIBRARIES_TO_LINK | ||
${libcore} | ||
${libpropagation} | ||
${libspectrum} | ||
${libmmwave} | ||
TEST_SOURCES ${test_sources} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
set(base_examples | ||
vehicular-simple-one | ||
vehicular-simple-two | ||
vehicular-simple-three | ||
vehicular-simple-four | ||
mmwave-vehicular-link-adaptation-example | ||
) | ||
|
||
foreach( | ||
example | ||
${base_examples} | ||
) | ||
build_lib_example( | ||
NAME ${example} | ||
SOURCE_FILES ${example}.cc | ||
LIBRARIES_TO_LINK | ||
${libmillicar} | ||
${libcore} | ||
${libpropagation} | ||
${libspectrum} | ||
${libmmwave} | ||
) | ||
endforeach() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.