Changes between Version 4 and Version 5 of 802.11/wlan_exp/app_notes/tutorial_hop_mac/fast_hopping


Ignore:
Timestamp:
Aug 3, 2015, 10:56:46 AM (9 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/app_notes/tutorial_hop_mac/fast_hopping

    v4 v5  
    55= Fast Hopping Approach =
    66
    7 Rather than have an AP decree a hopping event by including the Channel Switch Announcement, instead we can let each node on the network have an ''a priori'' known frequency hopping schedule. If we can synchronize our nodes such that don't drift apart from one another, this approach can let us considerably speed up the hopping rate as compared to the prior approach (milliseconds of dwell time vs 10 seconds of dwell time).
     7Rather than have an AP decree a hopping event by including the Channel Switch Announcement, instead we can let each node on the network have an ''a priori'' known frequency hopping schedule. This will not only dramatically reduce overhead, but will also increase reliability since client stations will not have to decode an explicit announcement prior to hopping to a new channel. If we can synchronize our nodes such that don't drift apart from one another, this approach can let us considerably speed up the hopping rate as compared to the prior approach (milliseconds of dwell time vs 10 seconds of dwell time).
    88
    99||  [[Image(wiki:802.11/wlan_exp/app_notes/tutorial_hop_mac/figs:fast_hop_overview.png, width=800)]]  ||
     
    1111
    1212In this design, the 802.11 DCF MAC will operate independently from the hopping schedule. The channel that a transmission uses is completely determined by the start time of that transmission and the frequency hopping schedule. Multiple frames can be transmitted within a single hop interval or a single transmission can extend beyond the next hop boundary. Any ongoing transmission or reception defers the next frequency tuning event until at least after the transmission or reception completes.
     13
     14== Changes to the 802.11 Reference Design ==
     15
     16To implement the frequency hopping schedule, the majority of our changes will take place in CPU_LOW. We will leave the high-level AP and STA applications generally unaware of the underlying frequency hopping behavior. The singular exception to this is that we will build in hooks to enable and disable the frequency hopping so the high-level applications can control whether or not the hopping behavior is active. For example, the STA will only enable the low-level frequency hopping once it has completed an active scan and has fully associated with the AP.
     17
     18=== CPU_HIGH and CPU_LOW ===
     19
     20Changes should be made to {{{wlan_mac_ipc_util.h}}} in the project SDK workspace zip.
     21
     22----
     23
     24We need to define one new type of IPC message between CPU_LOW and CPU_HIGH. This message will be used to enable or disable the frequency hopping behavior. Add the following definition to the {{{wlan_mac_ipc_util.h}}} header file:
     25
     26{{{
     27#!c
     28
     29#define IPC_MBOX_CONFIG_HOPPING                 50
     30
     31}}}
     32
     33The value of {{{50}}} is arbitrary. The only real requirement is that it is distinct from the other IPC definitions. You can find the other {{{IPC_MBOX_}}} definitions in the same file.
     34
     35
    1336
    1437||  [[Image(wiki:802.11/wlan_exp/app_notes/tutorial_hop_mac/figs:scope_plots.png, width=800)]]  ||