Difference between revisions of "Pi Car Comm Log"

From ESE205 Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
[[Pi Car Comm|https://classes.engineering.wustl.edu/ese205/core/index.php?title=Pi_Car_Comm]]
 
[[Pi Car Comm|https://classes.engineering.wustl.edu/ese205/core/index.php?title=Pi_Car_Comm]]
 
<!-- To make a new post, copy and paste everything between the opening and closing tags (including the tags) -->
 
<!-- To make a new post, copy and paste everything between the opening and closing tags (including the tags) -->
 +
<!-- OPEN -->
 +
<div class="entry" style="border: 1px solid;box-shadow: 5px 10px;padding:10px;margin:20px;">
 +
<div class="header" style="background-color:#A0A0A0;border:1px solid;padding:10px;margin:5px;">
 +
<p style="font-size:133%;font-weight:bold;">Title: WiFi Adapter and more</p>
 +
<p>Author: Patrick Naughton</p>
 +
<p>Date: 1/27/2018</p>
 +
<p>Hours: 1.5</p>
 +
</div>
 +
<div class="content">
 +
<p>Based on this article (http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6060057&tag=1), we should be able to use an 802.11a driver to mimic a worst case scenario 802.11p driver. The paper concludes that with minor software adjustments,</p>
 +
<blockquote>VANET solutions that are validated using this approximation will also work on real hardware with better signal quality. As long as experimenters are aware of the limitations of the presented solution, it can be successfully applied as a cost-effective tool for VANET research.
 +
</blockquote>
 +
<p>We therefore need not find an 802.11p module - a more common 802.11a module will do.</p>
 +
<p>Unfortunately, finding an 802.11a module is also surprisingly difficult. However, an 802.11n module should be able to operate in 802.11a mode because they share the same frequency (5GHz). This means an 802.11n module should suit our needs, as long as we can modify the device driver to make the minor adjustments the above paper discusses. Directly below is an example of such a driver.</p>
 +
<p>https://www.canakit.com/raspberry-pi-wifi.html</p>
 +
<p>In addition to supporting 802.11n operation, the dongle must also support ad hoc mode. This is because that seems to be the best way to set up a network mesh among multiple raspberry pis. Instructions for doing so can be found at the following link:</p>
 +
<p>http://www.ericerfanian.com/mobile-mesh-networks-with-the-raspberry-pi-part-1/</p>
 +
<p>Using an ad-hoc network mesh seems to be the best available solution. DSRC/WAVE, which nearly every source cites as the way to send emergency communications between cars, is an ad hoc network (https://www.hindawi.com/journals/jat/2017/2750452/). Such a network does not rely on external routers, so even if the cars lose internet access, they can still communicate with one another.</p>
 +
</div>
 +
</div>
 +
<!-- CLOSE -->
 
<!-- OPEN -->
 
<!-- OPEN -->
 
<div class="entry" style="border: 1px solid;box-shadow: 5px 10px;padding:10px;margin:20px;">
 
<div class="entry" style="border: 1px solid;box-shadow: 5px 10px;padding:10px;margin:20px;">

Revision as of 06:20, 28 January 2018

https://classes.engineering.wustl.edu/ese205/core/index.php?title=Pi_Car_Comm

Title: WiFi Adapter and more

Author: Patrick Naughton

Date: 1/27/2018

Hours: 1.5

Based on this article (http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6060057&tag=1), we should be able to use an 802.11a driver to mimic a worst case scenario 802.11p driver. The paper concludes that with minor software adjustments,

VANET solutions that are validated using this approximation will also work on real hardware with better signal quality. As long as experimenters are aware of the limitations of the presented solution, it can be successfully applied as a cost-effective tool for VANET research.

We therefore need not find an 802.11p module - a more common 802.11a module will do.

Unfortunately, finding an 802.11a module is also surprisingly difficult. However, an 802.11n module should be able to operate in 802.11a mode because they share the same frequency (5GHz). This means an 802.11n module should suit our needs, as long as we can modify the device driver to make the minor adjustments the above paper discusses. Directly below is an example of such a driver.

https://www.canakit.com/raspberry-pi-wifi.html

In addition to supporting 802.11n operation, the dongle must also support ad hoc mode. This is because that seems to be the best way to set up a network mesh among multiple raspberry pis. Instructions for doing so can be found at the following link:

http://www.ericerfanian.com/mobile-mesh-networks-with-the-raspberry-pi-part-1/

Using an ad-hoc network mesh seems to be the best available solution. DSRC/WAVE, which nearly every source cites as the way to send emergency communications between cars, is an ad hoc network (https://www.hindawi.com/journals/jat/2017/2750452/). Such a network does not rely on external routers, so even if the cars lose internet access, they can still communicate with one another.

Title: Link Dump

Author: Patrick Naughton

Date: 1/26/2018

Hours: ~10-15

Author: Patrick Naughton

Date: 1/26/2018

Link to modification article. Hopefully we can use this to modify an existing 802.11a (WiFi) module to fit our needs.

http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=6060057&tag=1

Author: Patrick Naughton

First log